PHP template engine smarty details _ php instances

Source: Internet
Author: User
Tags php template
This article mainly introduces the PHP template engine smarty in detail. This article describes the advantages of smarty and smarty, the places that are not suitable for using smarty, And the smarty directory structure and version, for more information, see <? Php
/*
1. What is smarty?

Smarty is a PHP template engine written in PHP. It separates the logic from external content,
The purpose is to separate PHP programmers from the artist. The programmer used to change the logic content of the program does not affect the webpage design of the artist. The engineer re-modifies the page and does not affect the program logic, this is particularly important in projects with multiple partners.

Ii. Advantages of smarty:

1. Speed: Programs Written with smarty can achieve the maximum speed improvement, which is relative to other template engine technologies.

2. compilation type: a program written in smarty must be compiled into a non-template PHP file during runtime. This file adopts a mix of PHP and HTML, during the next template access, the WEB request is directly converted to this file, instead of re-compiling the template (without modifying the source program)

3. cache Technology: A cache technology used by smarty to cache the HTML file that the user sees as a static HTML page. When the cache attribute of smarty is set to true, during the cachetime period set by smarty, user WEB requests are directly converted to this static HTML file, which is equivalent to calling a static HTML file.

4. Plug-in technology: smarty can customize plug-ins. Plug-ins are actually some custom functions.

5. You can use if/elseif/else/endif in the template. Using judgment statements in the template file can easily rearrange the template format.

3. areas not suitable for using smarty:

1. content to be updated in real time. For example, for a stock display, it needs to update data frequently. Using smarty for this type of program slows down the processing speed of the template.

2. small projects. Small projects because the project is simple and the artist and programmer have one project at the same time, using smarty will lose the advantage of rapid php development.


Iv. smarty directory structure and version
Open the official smarty website www.smarty.net/download.php. Download Smarty 3.1.12. Tar.gz and zip are applicable to linux and windows respectively.

After downloading the Smarty-stable-3.1.12 file, decompress it to get a folder named Smarty-3.1.12, which contains two main folders: demo and libs.

The demo folder contains the default folder structure, which is the main folder for programming code. The folder name in the demo is the default directory structure name of smarty. You can change the folder name to the desired name by changing the property value of smarty.
Libs is the smarty code source folder, which generally does not move.

/Libs/Smarty. class. php # main file

/Libs/sysplugins/# Internal plugin

/Libs/plugins/# external plugin, which can be expanded freely

/Demo/cahce/# Place cached files

/Demo/configs/# Place the configuration file that can be loaded

/Demo/templates/# Place the Template File

/Demo/templates_c/# Place the files compiled for the Template

You can change the name of the extracted Smarty-3.1.12 folder to the project name we want, and change the demo to the name of the folder where the encoding is stored.

2. debug Smarty-3.1.12

Create your own file and create index. php In the demo folder.
Create template index. tpl in the templates directory
(It can be the extension of almost any text file, which is commonly used in tpl, php, and html. We do not recommend the latter two because they can be accessed directly from a browser, which is not safe. You can set httpd. conf of apache to prohibit direct access to the. tpl file. Or place the templats directory outside the website document tree .)

*/

// Index. php code
Require ('../libs/Smarty. class. php ');
$ Smarty = new Smarty;
// In the called template, {$ name} can be used to output the name value zhang, and {} is the smarty separator here.
$ Smarty-> assign ('name', 'zhang ');
// The PHP statement block cannot be executed in the template tpl file.
$ Smarty-> display ('templates/index. tpl ');


/*
Index. tpl page content


Hello, {$ name}



*/

/*
The process for Smarty compilation is the source PHP File> template file (which may be called multiple or multiple times)> source PHP file...
That is to say, it does not affect other processing and output of the original PHP file. Therefore, the smarty template file can be a complete html file or a part of it.

Smarty Processing
Smarty first compiles the php source file into an intermediate file (also php). If cache is enabled and then a cache file (also php) is generated based on the compiled file, all the files to be cached are hard-coded.
Each subsequent access will access the compiled file (if the compiled file already exists) and call it multiple times at a time (it can be a single file multiple times or multiple times ), if cache is enabled and cached files are not expired, you can directly access the cached files and skip compiling files.
Once the compilation file is generated, it will not be automatically updated unless the template file or configuration file is changed. Modifying the source PHP file will not cause re-compilation. Once the compiled file is re-generated, the cached file must be re-generated.
*/

// Smarty allows two special compilation settings:
// 1. Do not re-compile automatically at any time (in the launch phase): This file is generated only when there is no compilation file for this file. Changes to the template file or configuration file will not cause re-compilation.
$ Smarty-> setCompile_check (false); // The default value is true. false indicates that no compilation file is generated when the file is changed.
$ Smarty-> getCompile_check (); // get the current compilation check settings
// 2. Re-Compile at any time (debugging phase): Re-Compile at any time.
$ Smarty-> setForce_compile (true); // The default value is false. true indicates re-compilation every time (cache is enabled, and cache is re-cached every time)
$ Smarty-> getForce_compile (); // gets the settings for the current forced Compilation

// Enable Cache
$ Smarty-> setCaching (true );
$ Smarty-> getCaching (); // gets the current cache status. The default value is false.
$ Smarty-> setcache_lifetime (60); // sets the cache time in seconds.
// {* Template file *}
// {Nocache}
// {$ Name}
// {/Nocache}
// {* If cache is enabled, the variables placed in the nocache tag will not be cached. The value of the PHP source file is read each time *}


/*
Smarty delimiter
In a template file, distinguishing between common html code and smarty Code relies on delimiters. The default value is {}, but it may conflict with js and css. Can be changed.
In 3.0, the template tag does not support spaces. For example, {$ abc} can be identified in Smarty2, but it cannot be identified in 3.0. It must be like {$ abc }, this is to better support javascript and css.
*/
$ Smarty-> left_delimiter = "{"; // left delimiter, attribute 2.0, followed by 3.0
$ Smarty-> right_delimiter = "}";
/*
The delimiters are equivalent to PHP echo, and all values in the delimiters are output, unless assigned values or other operations
The content between the two ** operators in the smarty tpl file is the comment content, as shown in figure
Tpl file:
{* This is the template comment *}
*/


// Set the cache directory path. The default "cache" is not set"
$ Smarty-> setCacheDir ("cache ");
// Obtain the cache directory path
$ Smarty-> getCacheDir ();

// Set the configuration directory path. The default "configs" is not set"
$ Smarty-> setConfigDir ("configs ");
// Add the configuration directory path. All paths will be saved as arrays. When you call a file, you will find
$ Smarty-> addConfigDir ("configs/test ");
// Obtain the array of the configured directory path
$ Smarty-> getConfigDir ();

// Set the directory path of the plug-in. The default "plugins" is not set"
$ Smarty-> setPluginsDir ("plugins ");
// Add the directory path of the plug-in. All paths will be saved as arrays, and files will be searched in all paths when being called, the plug-ins folder contains the storage files of functions that can be called in the foreground or background according to different rules. The names of file names and function names have different writing requirements according to different calling rules.
$ Smarty-> addPluginsDir ("plugins/test ");
// Obtain the array of the directory path of the plug-in
$ Smarty-> getPluginsDir ();

// Set the template directory path. The default "templates" is not set"
$ Smarty-> setTemplateDir ("templates ");
// Add the directory path of the template. All paths are saved as arrays. When you call a file, you can find
$ Smarty-> addTemplateDir ("templates/test ");
// Obtain an array of template directory paths
$ Smarty-> getTemplateDir ();

// Set the compiling directory path. The default "templates_c" is not set"
$ Smarty-> setCompileDir ("templates_c ");
// Obtain the compiling directory path
$ Smarty-> getCompileDir ();
/*
We can create different php source file folders and classify the php files into different folders.
Create a custom config file in each folder and create a new $ smarty = new Smarty object in the config file.
Then, set the cache, configuration file, plug-in, template, and compiling directory of PHP files in different folders to the same cache, configuration file, plug-in, template, and compiling directory.
Make all PHP source files in this folder reference this configuration file to get the same configuration
*/


// Template variable
$ Arr = array ("zhang", "li"), 'A' => array ("liu", "wang"), array ("ming ", "yi "));
$ Smarty-> assign ("testArr", $ arr );
// Set template variables to provide variables for the template to be called, you can use {$ testArr}, {$ testArr ['a'] [0]}, or {$ testArr. a.0} to access a specific array element
// In the template, you can directly use {$ testArr = "testValue" scope = "global"} to change the value of the passed template variable (if it does not exist, create and set it in the template ). the template variable ), scope attributes indicate the scope of use of template variables.
// Modify or create another array in the template {$ testArr = [1, 2]} or {$ testArr = [1, 'A' => 2, 2 => 3]} can also be {$ testArr [] = 4} or other PHP-likeCreate an array
// For the php source file, you can use $ smarty-> getTemplateVars ("testArr") to obtain the specified template variables. For example, you need to obtain the template variables changed or created in the template, when creating or changing a value in a template, you must add the scope attribute and set the value to scope = "global" or scope = "parent"

Class {
Function aa ($ nam ){
Echo $ nam;
}
}
$ Smarty-> assign ("obj", new );
// When the set template variable is an object, it can be called on the template page as follows. When the class object is passed to the template, it is also an address.
// {$ Obj-> aa ('My name is y ')}

// Smarty can identify the template variable embedded in double quotation marks, as long as this variable only contains numbers, letters, and underscores. However, it seems that only template variables that can be directly converted into strings are supported.
$ Smarty-> assign ("testStr", "this is testStr ");
// You can use {"$ testStr OK! "} To access

/*
Tpl template includes Template
Template file:
{Include file = "header. tpl "}
Header. tpl content:
This is the top content !!, Welcome, {$ name}

The template can also be in this format.
{Include file = "header. tpl" testVar = "this is the top content !!! "}
Header. tpl can use {$ testVar} to use the template variables that are included in the call page.
Header. tpl content:
{$ TestVar}, welcome, {$ name}


*/

/*
You can specify the correspondence between a series of variables and values in advance and put them in the configuration file for loading during use.
The configuration file is stored in the configs folder by default. You can customize the folder name.
*/

/*
# Template test. conf file:
# Values corresponding to keys can be enclosed in quotation marks.
Title = Welcome to Smarty !!
Cutoff_size = 40

[China]
Language = chinese

[England]
Language = english

# [China] and [england] are tags. If the key value of the tag is not set to global, you only need to call this configuration file and use it in the template, the key value of the tag can be used only when the corresponding tag is specified when the configuration file is called.
# Call the configuration file statement $ smarty-> configLoad ('test. conf ', $ sections = 'England'); the template called under this statement can use this configuration file. The key and value under which tag to use are specified through the $ sections attribute.
# $ Sections parameter can be left blank. The default value is null. $ smarty-> configLoad ('test. conf') only uses global key values, but not key values under tags.
# Use the {config_load file = "test. conf" section = "china" scope = "global"} statement in the template to call the configuration file
# The section attribute can be left empty. The default value is null. The scope attribute must be set to {config_load file = "test. conf" scope = "global "}
# Section attributes can be assigned with three values
# Local only the current template can use this configuration file
# Parent only contains the template after the current template introduces the configuration file statement, or the keyValue in the configuration file can be used in the template called after the smarty object in the php source file calls the configuration file
# The global test results are the same as those of parent.
# Use the key value {# language #} in the template, or use {$ smarty. config. language} to access the key value of the configuration file.
# In the PHP source file, you can use $ smarty-> getConfigVars ('language') or $ smarty-> getConfigVariable ('language') to obtain the key value, $ smarty-> getConfigVars ('language ') returns an array.
*/


/*
Common functions in tpl files
Tpl file:


{Capture name = "testCapture "}
{Include file = "f1.tpl "}
{/Capture}

{If true}
{$ Smarty. capture. testCapture}
{/If}

{If $ name = "wang "}

Welcome wang.

{Elseif $ name = "zhang "}

Welcome zhang.

{Else}

Welcome, whatever you are.

{/If}
{* Operator can be ==,>=or eq or ne *}

{For $ x = 0; $ x {$ X}
{/}
{* For Loop, similar to PHP code *}


{$ X = 0}
{While $ x {$ X ++}
{/While}
{* While LOOP, similar to PHP code. *}



{Foreach name = "testForeach" from = $ testArr key = arId item = arVal}
{$ ArId} corresponds to {$ arVal}


{$ Smarty. foreach. testForeach. index}

{$ Smarty. foreach. testForeach. iteration}

{$ Smarty. foreach. testForeach. first}

{$ Smarty. foreach. testForeach. last}

{$ Smarty. foreach. testForeach. total}


{Foreachelse}
$ TestArr is null
{/Foreach}

{* You can also use the following two PHP formats *}
{Foreach $ testArr as $ n}
{$ N}
{/Foreach}

{Foreach $ testArr as $ key =>n n}
{$ Key}
{/Foreach}

{$ SectionArr = [0 => "a", 4 => "B", "c", "d", "e", 6, 7, 8, 9, 10, 11, 12, 13, 14,15, 16]}
{Section name = "testSection" loop = $ sectionArr start = 0 step = 4 max = 6 show = true}

{$ Smarty. section. testSection. index }-
{$ SectionArr [testSection]}-
{$ Smarty. section. testSection. iteration }-

{Sectionelse}
$ SectionArr is null
{/Section}


*/


/*
Tpl template file:
{Literal}

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.