PHP(3): Start using Smarty_PHP教程

來源:互聯網
上載者:User
1. About SmartyWhen we are doing web programming using PHP, one problem is that the php files can be mixed with php code as long as the html code. At some point, it is not very clean and also not safe. And the work can't be seperated for back-end programmers and front-end programmers. So we need a tool to seperate the php logic from the html code to well organize the and maintain the developing process.So here it comes Smarty.Smarty is a web template system written in PHP. Smarty is primarily promoted as a tool for separation of concerns.[1] Smarty is intended to simplify compartmentalization, allowing the presentation of a web page to change separately from the back-end. Ideally, this eases the costs and efforts associated with software maintenance. Smarty generates web content by the placement of special Smarty tagswithin a document. These tags are processed and substituted with other code. Tags are directives for Smarty that are enclosed by template delimiters. These directives can be variables, denoted by a dollar sign ($), functions, logical or loop statements. Smarty allows PHP programmers to define custom functions that can be accessed using Smarty tags. 2. Set up SmartyStep1: download the Smarty and rename it's libs folder and import it into our php project.Step2: create a php file to connect to Smarty( SmartyCon.php)[php] view plaincopyprint?config_dir = "smarty/"; //smarty's config info $smarty->caching = false; //use cache or not $smarty->template_dir = "./templates"; //set the folder for keeping the templates /** * smarty can automatically compile the templates and php contents to an mixed file * and be stored in templates_C folder */ $smarty->compile_dir = "./templates_c"; //the folder that store compiled files $smarty->cache_dir = "./smarty_cache"; //store cache files $smarty->left_delimiter = "{"; $smarty->right_delimiter = "}"; ?> According to the code we should also create 3 folders which are used to store some corresponding files. templates folder is used to store html files which as the folder's name shows: they are templates, and will be called by "$smarty->display()" to show different styles for a project. tempates_c is used to store the compiled files. php files and templates are written in different files, but the php compiler can compile the templates and php contents to an mixed file and store them into templates_c folder. smarty_cache is used to store cache files. Step3: write the php content ( a.php)[php] view plaincopyprint?assign("title",$name); //assign php variabel to the tab in templates //$smarty->display("a.html"); //show the template $nameTwo[] = array("name"=>"jimmy","city"=>"Montreal"); $nameTwo[] = array("name"=>"tim","city"=>"wuxi"); $nameTwo[] = array("name"=>"sam","city"=>"newyork"); $nameTwo[] = array("name"=>"john","city"=>"sanfran"); $nameTwo[] = array("name"=>"lily","city"=>"loyola"); $title= array("a"=>"name","b"=>"News","c"=>"date","d"=>"now()"); $smarty->assign("title",$nameTwo); //assign php variabel to the tab in templates $smarty->assign("ab",$title); $smarty->display("a.html"); //show the template ?> As the code abouve shows, we can use $smarty->assign("ab",$title), we can assign a php variable to a smarty variable. Then we use $smarty->display() to display the corresponding template. In the template file we havce to use the same assigned file to display the value of the php content here. For example, if we want the template show $title's "News". In a.html file we have to use "{$ab[b]}" Step 4: write template file( a.html)[html] view plaincopyprint?

{$ab["b"]}

{$title} {section name=list loop=$title} {$title[list].name} - {$title[list].city}
{/section} The result is like this:As to how to print out the values in a two dimentional table, we have to use {section name='' loop=$..}{/section}

http://www.bkjia.com/PHPjc/477816.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/477816.htmlTechArticle1. About Smarty When we are doing web programming using PHP, one problem is that the php files can be mixed with php code as long as the html code. At some point, it is not very cle...

  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.