本文整理汇总了PHP中XTemplate::debug_mode方法的典型用法代码示例。如果您正苦于以下问题:PHP XTemplate::debug_mode方法的具体用法?PHP XTemplate::debug_mode怎么用?PHP XTemplate::debug_mode使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类XTemplate
的用法示例。
在下文中一共展示了XTemplate::debug_mode方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: init
/**
* Initializes static class configuration.
*
* Options:
* * cache - Enable template pre-compilation on disk.
* * cache_dir - Directory to store pre-compiled templates.
* * cleanup - Cleanup HTML output removing comments, spaces and blanks.
* * debug - Enable dumping debug information.
* * debug_output - Switch output to TPL-debug mode.
*
* Default values:
* <code>
* $options = array(
* 'cache' => false,
* 'cache_dir' => '',
* 'cleanup' => false,
* 'debug' => false,
* 'debug_output' => false,
* );
* </code>
*
* @param array $options CoTemplate options
*/
public static function init($options = array())
{
$defaults = array('cache' => false, 'cache_dir' => '', 'cleanup' => false, 'debug' => false, 'debug_output' => false);
$options = array_merge($defaults, $options);
self::$cache_enabled = $options['cache'];
self::$cache_dir = $options['cache_dir'];
self::$debug_mode = $options['debug'];
self::$debug_output = $options['debug_output'];
Cotpl_data::init($options['cleanup']);
}