摘要:
1 //定义服务器绝对路径 2 define('BASE_PATH', $_SERVER['DOCUMENT_ROOT']); 3 //定义smarty的目录 4 define('SMARTY_PATH', '/smarty/'); 5 //加载smarty类库文件 6 require BASE_PATH.SMARTY_PATH.'smarty.class.php'; 7 //实例化smarty对象 8 $smarty = new smarty(); 9 //配置下面的文件10 11 $smarty->tem 阅读全文