ホームページ  >  記事  >  バックエンド開発  >  PHP スマートな章 -- スマートな入門

PHP スマートな章 -- スマートな入門

巴扎黑
巴扎黑オリジナル
2016-11-24 09:23:081118ブラウズ

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 [ 'スマート'];

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


声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。