时间:2021-07-01 10:21:17 帮助过:23人阅读
// For SAE 编译文件存放在memcache中
$smarty->compile_dir = 'saemc://smartytpl/';
$smarty->cache_dir = 'saemc://smartytpl/';
$smarty->compile_locking = false; // 防止调用touch,saemc会自动更新时间,不需要touch
上面三行是必须的。
这样Smarty模板就可以在SAE上运行了。
摘自 〃Style ひぐ
http://www.bkjia.com/PHPjc/478240.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/478240.htmlTechArticleSmarty是非常流行的模板系统,它分离了业务和逻辑、执行速度快,在php网站中有广泛的运用。 不过在部署到sina app engine(sae)上时出现了问...