Home php教程 php手册 PHP 中使用 Smarty 之二:配置文件在模板变量中的使用

PHP 中使用 Smarty 之二:配置文件在模板变量中的使用

Jun 13, 2016 am 10:45 AM
php smarty effect use front end variable exist yes template design Configuration file

 

配置文件在模板中的作用是:给前端设计页面定义变量,主要控制的是模板的外观,与PHP 程序无关。

        使用步骤:

        1、使用$tpl->configs_dir="目录"  //指定配置文件存放的目录;

        2、在模板中要使用 加载f配置文件,如果有区域的话,可以使用section="区域" 来指定区域

              设置区域的目的是:为了不同的文件调用不同区域的配置文件变量。

              在配置文件中是通过“[区域名称]”来指定区域的,其他没有指定区域的变量均为共有变量,即每一个页面都可以使用。

        3、在指定的目录下建立配置文件。

        下面通过一个实例来演示,实例思路:主文件index.php 调用模板文件index.tpl,在index.tpl 中设置配置文件变量(与PHP 程序无关)

init.inc.php Smart模板引擎初始化文件

 

   define('ROOT_PATH', dirname(__FILE__));         //网站根目录 

   require ROOT_PATH.'/libs/Smarty.class.php'; //引入Smart 模板引擎 

   $_tpl = new Smarty();                   //初始化一个对象 

   $_tpl->template_dir = ROOT_PATH.'/tpl/'; //重新设置网站的模板目录 

   $_tpl->compile_dir = ROOT_PATH.'./com/'; //重新设置网站的编译文件目录 

   $_tpl->config_dir = ROOT_PATH.'/configs/';   //重新设置网站的配置文件目录 

   $_tpl->left_delimiter = '

   $_tpl->right_delimiter = '}>';                //重新设置网站的右定界符 

?> 

 

index.php

 

   require 'init.inc.php';       //引入模板初始化文件 

   global $_tpl; 

    $_tpl->display('index.tpl');  //载入模板文件 

?> 

 

index.tpl 配置变量的使用方式有两种:一、;二、

 

  

 

ttp://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 

http://www.w3.org/1999/xhtml"> 

   

 

         

       

配置文件在模板变量中的使用 

   

   

 

      

 

             

 

                

 

                

 

                

 

                 

 

             

 

             

 

                

 

                

 

                

 

                

 

             

 

             

 

                 

 

                

 

                

 

                

 

             

 

             

 

                

 

             

 

      

aaaa aaaa aaaa aaaa
aaaa aaaa aaaa aaaa
aaaa aaaa aaaa aaaa
 

                        区域变量的显示: 

                       
 

                       
 

                       
 

                

 

  

     

 

 

/configs/view.conf 配置文件

border=2

tabw=600

tabh=500

bgcolor=yellow

align=center

 

[one]

colspan=4

aa=one section

 

[two]

bb=two section

 

[three]

cc=three section

 

执行结果,如图所示:

摘自:Lee.的专栏

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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

See all articles