Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to realize the output of smarty simple template variables

2025-01-19 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

This article introduces the relevant knowledge of "how to realize smarty simple template variable output". In the operation process of actual cases, many people will encounter such difficulties. Next, let Xiaobian lead you to learn how to deal with these situations! I hope you can read carefully and learn something!

These are as follows:

The config.inc.php configuration file is as follows:

include_once ('smarty/Smarty.class.php ');$smarty=new Smarty();$smarty->config_dir="smarty/Config_File.class.php";$smarty->caching=false; //Enable caching $smarty->template_dir="./ templates"; //template directory $smarty->compile_dir="./ templates_c"; //compile directory $smarty->cache_dir="./ smarty_cache"; //cache directory $smarty->left_delimiter="";

The index.php file is as follows:

include('./ config.inc.php');$title="php test title";$content="smarty exercise!" ";$newstext[]=array ("name"=>"php program test","date"=>"2015-08-01");$newstext[]=array ("name"=>"php video tutorial","date"=>"2015-08-02");$newstext[]=array ("name"=>"smarty learning","date"=>"2015-08-03");$row=array ("Title,""Name,""Age");$smarty->assign ("title",$title);$smarty->assign ("row",$row);//an array passes multiple values $smarty->assign("shownewstext",$newstext);//a two-dimensional array passes multiple values $smarty->assign("content",$content);$smarty->display ('index.htm ');

The results are as follows:

Test Array: Title| name|- -------------------------- Circular news content for: php program test- 2015-08-01php video tutorial- 2015-08-02smarty learning- 2015-08-03"how to achieve smarty simple template variable output" content is introduced here, thank you for reading. If you want to know more about industry-related knowledge, you can pay attention to the website. Xiaobian will output more high-quality practical articles for everyone!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report