caching = false;$smarty->template_dir = APPL"/> caching = false;$smarty->template_dir = APPL">

php之smarty篇(1)-smarty引入

WBOY
發布: 2016-06-13 10:38:46
原創
921 人瀏覽過

php之smarty篇(一)--smarty引入

smarty在引导文件中引入:include_once ("../library/Smarty/Smarty.class.php");$smarty = new Smarty ();$smarty->caching = false;$smarty->template_dir = APPLICATION_PATH."application/views/scripts/";$smarty->compile_dir = "./data/smarty/";$smarty->cache_dir = "./data/smarty/cache_c/";//$smarty->left_delimiter = "<{";//$smarty->right_delimiter = "}>";require_once "Zend/Loader/Autoloader.php";Zend_Loader_Autoloader::getInstance ()->setFallbackAutoloader ( true );$registry = Zend_Registry::getInstance ();$registry->set ( 'smarty', $smarty );引入期间前端控制器的配置:$front = Zend_Controller_Front::getInstance ();$front->setBaseUrl ( '/' );$front->setParam ( 'useDefaultControllerAlways', true );$front->setParam ( 'noViewRenderer', true );$front->setControllerDirectory ( '../application/controllers' );$front->throwExceptions ( true );$this->view 在控制器中配置:$this->registry = Zend_Registry::getInstance ();$this->view = $this->registry ['smarty'];$this->view->assign ( 'baseurl', $this->_request->getBaseUrl () );
登入後複製

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板