Smarty 图标

您可以根据商标声明使用 Smarty 徽标。

Smarty Template Engine Smarty Template Engine

对于赞助、广告、新闻或其他询问,请通过电子邮件联系我们

使用 Smarty 的网站

广告

$debugging_ctrl

它允许使用其他方法来启用调试。NONE 表示不允许使用其他方法。URL 表示当在QUERY_STRING 中找到关键字 SMARTY_DEBUG 时,将为该脚本调用启用调试。如果$debuggingTRUE,此值则会被忽略。

示例 13.3. 本地主机上的 $debugging_ctrl

<?php
// shows debug console only on localhost ie
// http://localhost/script.php?foo=bar&SMARTY_DEBUG
$smarty->debugging = false; // the default
$smarty->debugging_ctrl = ($_SERVER['SERVER_NAME'] == 'localhost') ? 'URL' : 'NONE';
?>


另请参阅调试控制台部分、$debugging$smarty_debug_id