Smarty成员变量:$debugging_ctrl

2018-10-19 15:32 更新

$debugging_ctrl

设置开启调试信息的方式。 设置成NONE则不开启调试信息。 URL值意味着当URL参数中有SMARTY_DEBUG关键字则开启调试信息。 如果开启了 $debugging,则本设置将忽略。

Example 13.3. 在localhost上的$debugging_ctrl

<?php
// 只在localhost的地址上面显示调试控制台
// 地址:http://localhost/script.php?foo=bar&SMARTY_DEBUG
$smarty->debugging = false; // 默认
$smarty->debugging_ctrl = ($_SERVER['SERVER_NAME'] == 'localhost') ? 'URL' : 'NONE';
?>

参见 调试控制台, $debugging 和 $smarty_debug_id.

以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号