Detailed explanation of the usage and examples of the configuration file of PHP template engine Smarty in template variables

墨辰丷
Release: 2023-03-29 16:00:01
Original
1433 people have browsed it

This article mainly introduces how to use the configuration file of PHP template engine Smarty in template variables. It analyzes the specific steps and related techniques of using configuration file variables in the form of examples. Friends in need can refer to it

The example of this article describes how to use the configuration file of PHP template engine Smarty in template variables. Share it with everyone for your reference, the details are as follows:

The role of the configuration file in the template is to define variables for the front-end design page, which mainly controls the appearance of the template and has nothing to do with the PHP program.

Usage steps:

1. Use $tpl->configs_dir="directory" //Specify the directory where the configuration file is stored;

2 . Use <{configs_load file="config file"}> in the template to load the f configuration file. If there is an area, you can use section="area" to specify the area.

The purpose of setting the area is : Call configuration file variables in different areas for different files.
In the configuration file, the region is specified through "[region name]". Other variables that do not specify the region are common variables, that is, every page can be used.

3. Create a configuration file in the specified directory.

The following is demonstrated through an example. The example idea: the main file index.php calls the template file index.tpl, and sets the configuration file variables in index.tpl (independent of the PHP program)

init.inc.php Smart template engine initialization file

template_dir = ROOT_PATH.'/tpl/'; //重新设置网站的模板目录 $_tpl->compile_dir = ROOT_PATH.'./com/'; //重新设置网站的编译文件目录 $_tpl->config_dir = ROOT_PATH.'/configs/'; //重新设置网站的配置文件目录 $_tpl->left_delimiter = '<{'; //重新设置网站的左定界符 $_tpl->right_delimiter = '}>'; //重新设置网站的右定界符 ?>
Copy after login

index.php

display('index.tpl'); //载入模板文件 ?>
Copy after login

index.tpl There are two ways to use configuration variables:
1. <{#Configuration Variables#}>;
2. <{$smart .config.Configuration variables}>

<{config_load file="view.conf" section="one"}>      配置文件在模板变量中的使用 
  
aaaa aaaa aaaa aaaa
aaaa aaaa aaaa aaaa
aaaa aaaa aaaa aaaa
区域变量的显示: <{#aa#}>
<{#bb#}>
<{#cc#}>
Copy after login

/configs/view.conf Configuration file

border=2 tabw=600 tabh=500 bgcolor=yellow align=center [one] colspan=4 aa=one section [two] bb=two section [three] cc=three section
Copy after login

Execution results, as shown in the figure:

Summary: The above is the entire content of this article, I hope it can help everyone learn Helps.

Related recommendations:

phpUse curl to obtain data through a proxy

phppdo oracle Chinese garbled solution example analysis

phpFunction uses a variable number of parameter methods

The above is the detailed content of Detailed explanation of the usage and examples of the configuration file of PHP template engine Smarty in template variables. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!