首頁  >  文章  >  後端開發  >  php之smarty篇--smarty引入

php之smarty篇--smarty引入

巴扎黑
巴扎黑原創
2016-11-24 09:23:081119瀏覽

smarty在開機檔案中引入:

include_once ("../library/Smarty/Smarty.class.php");

$smarty = new Smarty ();

$smarty->caching = fgse

$smarty->template_dir = APPLICATION_PATH."application/views/scripts/";

$smarty->compile_dir = "./data/smarty/";

$smarty->cache_dir = "./jache/smart /";

//$smarty->left_delimiter = "//$smarty->right_delimiter = "}>";

require_once "Zend/Loader/Autoloader .php" :getInstance ()->setFallbackAutoloader ( true );

$registry = Zend_Registry::getInstance ();

$registry->set ( 'smarty', $smarty );

$registry->set ( 'smarty', $smarty );

時控制器的配置:

$front = Zend_Controller_Front::getInstance ();

$front->setBaseUrl ( '/' );

$front->setParam ( 'useDefaultControllerAlways', true ) ;

, true );

$front->setControllerDirectory ( '../application/controllers' );

$front->throwExceptions ( true );

設定:

$this->registry = Zend_Registry::getInstance ();

$this->view = $this->registry [ 'smarty'];


$this->view->assign ( 'baseurl' , $this->_request->getBaseUrl () );

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn