摘要:
debug: 1.$tpl->debugging_ctrl = 'URL'; 然后在你正常访问的url中加入?SMARTY_DEBUG,如: http://test/smarty_test/test_tpl.php?SMARTY_DEBUG 这样就会弹出调试窗口了。 注意:$tpl->debugging这时要为默认值false; 注意: url传入?SMARTY_DEBUG时当页有效(不设cookie) 当传入?SMARTY_DEBUG=on时可以一次启动debug(用cookie)以后不传?SMARTY_DEBUG这时也可以调试 当传入?SMA... 阅读全文
摘要:
define(ROOT, dirname(__FILE__).DIRECTORY_SEPARATOR); include ROOT."libs/Smarty.class.php"; $tpl=new Smarty; $tpl->template_dir=ROOT."tpl/"; //模板文件 $tpl->compile_dir=ROOT."com"; //生成编译后的文件 $tpl->config_dir=ROOT."configs"; //配置文件 $tpl->left_delimiter 阅读全文