這篇文章主要介紹了sae使用smarty模板的方法,大家參考使用吧
Smarty是非常流行的模板系統,它分離了業務和邏輯、執行速度快,在php網站中有廣泛的運用。 不過在部署到sina app engine(sae)上時出現了問題,因為sae作為雲計算平台式無法進行文件讀寫操作的,所以Smarty中輸出的緩存文件就無法實現。 錯誤信息:“SAE_Fatal_error: Uncaught exception 'SmartyException' with message 'unable to write file ./web/templates_c/wrt4e95555280ef1' ” SAE給出了解決方案就是使用Memcache。首先進入應用中的應用管理中,在服務管理中開啟Memcache一個初始化, 然後修改Smarty的配置文件: 代碼如下: // For SAE 編譯文件存放在memcache中 $smarty->compile_dir = 'saemc://smartytpl/'; $smarty->cache_dir = 'saemc://smartytpl/'; $smarty->compile_locking = false; // 防止調用touch,saemc會自動更新時間,不需要touch 上面三行是必須的。 這樣Smarty模板就可以在SAE上運行了。