www.gusucode.com > 74cms PHP骑士人才系统 v3.5.1源码程序 > code/upload/include/template_lite/plugins/postfilter.showtemplatevars.php

    <?php
/*
 * Template Lite plugin converted from Smarty
 * -------------------------------------------------------------
 * File:     postfilter.showtemplatevars.php
 * Type:     postfilter
 * Name:     showtemplatevars
 * Purpose:  Output code that lists all current template vars.
 * -------------------------------------------------------------
 */
 function template_postfilter_showtemplatevars($compiled, &$template_object)
 {
     $compiled = "<pre>\n<?php print_r(\$this->_vars); ?>\n</pre>" . $compiled;
     return $compiled;
 }
?>