ホームページ  >  記事  >  php教程  >  スマートな簡単テンプレート変数出力方法

スマートな簡単テンプレート変数出力方法

高洛峰
高洛峰オリジナル
2016-12-27 15:54:201364ブラウズ

この記事ではSmartyのテンプレート変数の出力方法について簡単に説明します。参考のために皆さんと共有してください。詳細は次のとおりです:

config.inc.php 設定ファイルは次のとおりです:

include_once('smarty/Smarty.class.php');
$smarty=new Smarty();
$smarty->config_dir="smarty/Config_File.class.php";
$smarty->caching=false; //是否开启缓存
$smarty->template_dir="./templates"; //模板目录
$smarty->compile_dir="./templates_c"; //编译目录
$smarty->cache_dir="./smarty_cache"; //缓存目录
$smarty->left_delimiter="<{";
$smarty->right_delimiter="}>";

index.php ファイルは次のとおりです:

include(&#39;./config.inc.php&#39;);
$title="php测试标题";
$content="smarty练习!";
$newstext[]=array("name"=>"php程序测试","date"=>"2015-08-01");
$newstext[]=array("name"=>"php视频教程","date"=>"2015-08-02");
$newstext[]=array("name"=>"smarty学习","date"=>"2015-08-03");
$row=array("标题","姓名","年龄");
$smarty->assign("title",$title);
$smarty->assign("row",$row);//一个数组传递多个值
$smarty->assign("shownewstext",$newstext);//二维数组传递多个值
$smarty->assign("content",$content);
$smarty->display(&#39;index.htm&#39;);

実行結果は次のとおりです。

测试数组:标题 | 姓名 | 年龄
--------------------------------------------------------------------------------
测试内容为:smarty练习!
循环新闻内容为:
php程序测试 - 2015-08-01
php视频教程 - 2015-08-02
smarty学习 - 2015-08-03

この記事が、Smarty テンプレートに基づいて PHP プログラムを設計する皆さんのお役に立てれば幸いです。

さらにスマートでシンプルなテンプレート変数の出力方法については、PHP 中国語 Web サイトの関連記事に注目してください。


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