当前位置: 首页>>代码示例>>PHP>>正文


PHP XTemplate::debug_output方法代码示例

本文整理汇总了PHP中XTemplate::debug_output方法的典型用法代码示例。如果您正苦于以下问题:PHP XTemplate::debug_output方法的具体用法?PHP XTemplate::debug_output怎么用?PHP XTemplate::debug_output使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在XTemplate的用法示例。


在下文中一共展示了XTemplate::debug_output方法的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']);
 }
开发者ID:Andreyjktl,项目名称:Cotonti,代码行数:33,代码来源:cotemplate.php


注:本文中的XTemplate::debug_output方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。