search
HomeBackend DevelopmentPHP TutorialViews of ThinkPHP framework_PHP tutorial

Views of ThinkPHP framework_PHP tutorial

Jul 14, 2016 am 10:12 AM
smartythinkphpviewoneconstituteframemoduletemplateofkindcomponentsviewproject

1. View

1. The composition of view components:

1) View class

View class

Smarty class

2) Template

Tpl/project/module/***.html

The view class is responsible for reading the template content, implementing string replacement, and finally outputting it to the user

2. Template definition

Default template file definition rules:

Template directory/[group name/] module name/operation name + template suffix

TMPL_TEMPLATE_SUFFIX

Generally, the suffixes of templates generally use the following types:

.html

.html

.tpl

3. Separator

Because each template designer has different habits, some people are used to using "{}" and some people use {**}

In the configuration file, you can set the following two configuration options, which represent the delimiter of the configuration template

'TMPL_L_DELIM'=>'

'TMPL_R_DELIM'=>'}>',


4. Template assignment and output

1) $this->assign(‘template variable name’, variable);

$var = 'Mobile phone';
                         
           $this->assign('var',$var);
                         
            $this->display('test');


2) $this->assign(array variable);





$var = 'Mobile phone';
                         
           $this->assign('var',$var);
                         
          $arr['price'] = 33.3;
          $arr['address'] = 'Beijing';
          $this->assign($arr);
           $this->display('test');
}

3) $this->display(‘operation name’)

The specified operation name under the current module.html template

4) $this->display(‘Module: operation name’); //Template can be called across modules


​​​​Refer to the specified operation name.html template under the specified module

5) $this->display(‘Operation’, ‘Output encoding’, ‘Output type’);


//Cross-module output
           $this->display('User:login','utf-8','text/html');

5. Template replacement (template constant)

Resources such as css, js, and images that are often cited in projects need to be cited.


__PUBLIC__: The public directory of the current website

__APP__: URL address of the current project

__GROUP__: URL address of the current group

__URL__: URL address of the current module

__ACTION__: URL address of the current operation

In the template in tp, you can use the above template constants, which represent different strings. Generally, you can use the above constants when you need to reference the URL

By default: if we access:

Localost/index.php/home/product/test, if the template uses the __PUBLIC__ template constant, then its value points to the htdocs directory of apache, but if we have multiple projects, there will be Conflict, how to resolve it?

Solution:

1) Modify configuration file

In the configuration file, you can configure an option called TMPL_PARSE_STRING, which can define the value of the template constant used in the template


Then, in the template, you can reference the resource files under the current project like this:


2) Configure virtual host

Open the host file:


Open httpd.conf


Remove the # before the above configuration options

Open the httpd-vhosts.conf file and add new virtual host settings


Restart apache

Localhost---àapache/htdocs/

 

Tp.com-----àapache/htdocs/tp/

 

6、 获取内容

 

$this->fetch();

 


 

Display:读取模板、替换内容、输出

Fetch:读取模板、替换内容、返回字符串(主要用于生成静态页)

 

 

二、模板

 

1、 模板注释:

 

l  {/* 注释内容 */ }

 

l  {// 注释内容 }

 

Tp中的模板注释主要是给模板设计者或程序设计者来看的

 

2、 变量输出:

 

程序向模板中赋值

 

普通变量

       $name

数组变量

       $row

对象变量

       $obj

 

代码示例:

 

Php程序:

 


 

模板程序:

 


 

 

 

 

 

 

 

3、 系统变量   (模板中的系统变量)

 

l  $Think.server        $_SERVER

l  $Think.get               $_GET

l  $Think.post             $_POST

l  $Think.request         $_REQUEST

l  $Think.cookie          $_COOKIE

l  $Think.session         $_SESSION

l  $Think.config          读取配置文件      

 

 


 

4、 使用函数

 

l  格式

 

       {$name|fn1|fn2=arg1,arg2,###}

 


 

5、 默认值

 

{$变量|default="默认值"}

 


 

6、 运算符

 

l  +              {$a+$b}

l  -        {$ab}

l  *              {$a*$b}

l  /        {$a/$b}

l  %             {$a%$b}

l  ++            {$a++} 或  {++$a}

l  --              {$a--}  或 {--$a}

 


 

7、 内置标签

 

l  闭合标签


l  开放标签

8. Include files

is the entry file location based on the project.

./Tpl/Admin/Public/header.html

We put the public parts of the web page into two public template pages, header.html and footer.html, and use include to reference them in the home page


When referencing the file above, the path is too long. How to solve it?

means referencing the specified template in the specified template under the current project



Use include to include the footer and header files under the "Public module"

Include tag allows passing parameters to the template


Template code:


9. Import files

In tp, several tags are provided to implement (simplify) references to resource files

l Format:

file (required): resource file

type (optional): resource file type, the default is js

The starting path is the Public (__PUBLIC__) directory of the website

Use namespace method

Directory.Directory.File name


10. volist tag

Used to traverse array elements

l Format:

                   {$vo.id}

                                 {$vo.name}

l name (required): array variable to be traversed

l id (required): current array element

l offset: The offset of the data to be output

l length: The length of the output data, you need to specify offset

l key: Loop index key value defaults to i


11. foreach tag

Used to traverse array variables

Syntax:

                   {$vo.id}

                                 {$vo.name}

Name: Array variable to be traversed

Item: variable name used to save the current element

If you have special needs, use volist, otherwise use foreach


12. for tag

                 {$i}

Properties:

l start (required): loop variable start value

l end (required): loop variable end value (not included)

l name (optional): loop variable name, the default value is i

l step (optional): step value, the default value is 1


13. switch tag

l Format:

Output content 1

Output content 2

Default


14. empty tag

l name is empty

15. assign tag

l

16. if tag

l if

l elseif

l else


When judging, you need to use the following connectors

l eq or equal: equal to

l neq or notequal: not equal to

l gt: greater than

l egt: greater than or equal to

l lt: less than

l elt: less than or equal to

l heq: constant equal to

l nheq: not always equal

17. Use php code

1)echo “hello”;

2)


In the configuration file, there is an option to control whether the second method is available


TMPL_DENY_PHP can disable the second method

Recommendation: Use as little php code in templates as possible


www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/477228.htmlTechArticle1. View 1. Composition of view components: 1) View class View class Smarty class 2) Template Tpl/project /Module/***.html The view class is responsible for reading the template content and implementing string replacement. Finally...
Statement
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
PHP Performance Tuning for High Traffic WebsitesPHP Performance Tuning for High Traffic WebsitesMay 14, 2025 am 12:13 AM

ThesecrettokeepingaPHP-poweredwebsiterunningsmoothlyunderheavyloadinvolvesseveralkeystrategies:1)ImplementopcodecachingwithOPcachetoreducescriptexecutiontime,2)UsedatabasequerycachingwithRedistolessendatabaseload,3)LeverageCDNslikeCloudflareforservin

Dependency Injection in PHP: Code Examples for BeginnersDependency Injection in PHP: Code Examples for BeginnersMay 14, 2025 am 12:08 AM

You should care about DependencyInjection(DI) because it makes your code clearer and easier to maintain. 1) DI makes it more modular by decoupling classes, 2) improves the convenience of testing and code flexibility, 3) Use DI containers to manage complex dependencies, but pay attention to performance impact and circular dependencies, 4) The best practice is to rely on abstract interfaces to achieve loose coupling.

PHP Performance: is it possible to optimize the application?PHP Performance: is it possible to optimize the application?May 14, 2025 am 12:04 AM

Yes,optimizingaPHPapplicationispossibleandessential.1)ImplementcachingusingAPCutoreducedatabaseload.2)Optimizedatabaseswithindexing,efficientqueries,andconnectionpooling.3)Enhancecodewithbuilt-infunctions,avoidingglobalvariables,andusingopcodecaching

PHP Performance Optimization: The Ultimate GuidePHP Performance Optimization: The Ultimate GuideMay 14, 2025 am 12:02 AM

ThekeystrategiestosignificantlyboostPHPapplicationperformanceare:1)UseopcodecachinglikeOPcachetoreduceexecutiontime,2)Optimizedatabaseinteractionswithpreparedstatementsandproperindexing,3)ConfigurewebserverslikeNginxwithPHP-FPMforbetterperformance,4)

PHP Dependency Injection Container: A Quick StartPHP Dependency Injection Container: A Quick StartMay 13, 2025 am 12:11 AM

APHPDependencyInjectionContainerisatoolthatmanagesclassdependencies,enhancingcodemodularity,testability,andmaintainability.Itactsasacentralhubforcreatingandinjectingdependencies,thusreducingtightcouplingandeasingunittesting.

Dependency Injection vs. Service Locator in PHPDependency Injection vs. Service Locator in PHPMay 13, 2025 am 12:10 AM

Select DependencyInjection (DI) for large applications, ServiceLocator is suitable for small projects or prototypes. 1) DI improves the testability and modularity of the code through constructor injection. 2) ServiceLocator obtains services through center registration, which is convenient but may lead to an increase in code coupling.

PHP performance optimization strategies.PHP performance optimization strategies.May 13, 2025 am 12:06 AM

PHPapplicationscanbeoptimizedforspeedandefficiencyby:1)enablingopcacheinphp.ini,2)usingpreparedstatementswithPDOfordatabasequeries,3)replacingloopswitharray_filterandarray_mapfordataprocessing,4)configuringNginxasareverseproxy,5)implementingcachingwi

PHP Email Validation: Ensuring Emails Are Sent CorrectlyPHP Email Validation: Ensuring Emails Are Sent CorrectlyMay 13, 2025 am 12:06 AM

PHPemailvalidationinvolvesthreesteps:1)Formatvalidationusingregularexpressionstochecktheemailformat;2)DNSvalidationtoensurethedomainhasavalidMXrecord;3)SMTPvalidation,themostthoroughmethod,whichchecksifthemailboxexistsbyconnectingtotheSMTPserver.Impl

See all articles

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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools