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's Current Status: A Look at Web Development TrendsPHP's Current Status: A Look at Web Development TrendsApr 13, 2025 am 12:20 AM

PHP remains important in modern web development, especially in content management and e-commerce platforms. 1) PHP has a rich ecosystem and strong framework support, such as Laravel and Symfony. 2) Performance optimization can be achieved through OPcache and Nginx. 3) PHP8.0 introduces JIT compiler to improve performance. 4) Cloud-native applications are deployed through Docker and Kubernetes to improve flexibility and scalability.

PHP vs. Other Languages: A ComparisonPHP vs. Other Languages: A ComparisonApr 13, 2025 am 12:19 AM

PHP is suitable for web development, especially in rapid development and processing dynamic content, but is not good at data science and enterprise-level applications. Compared with Python, PHP has more advantages in web development, but is not as good as Python in the field of data science; compared with Java, PHP performs worse in enterprise-level applications, but is more flexible in web development; compared with JavaScript, PHP is more concise in back-end development, but is not as good as JavaScript in front-end development.

PHP vs. Python: Core Features and FunctionalityPHP vs. Python: Core Features and FunctionalityApr 13, 2025 am 12:16 AM

PHP and Python each have their own advantages and are suitable for different scenarios. 1.PHP is suitable for web development and provides built-in web servers and rich function libraries. 2. Python is suitable for data science and machine learning, with concise syntax and a powerful standard library. When choosing, it should be decided based on project requirements.

PHP: A Key Language for Web DevelopmentPHP: A Key Language for Web DevelopmentApr 13, 2025 am 12:08 AM

PHP is a scripting language widely used on the server side, especially suitable for web development. 1.PHP can embed HTML, process HTTP requests and responses, and supports a variety of databases. 2.PHP is used to generate dynamic web content, process form data, access databases, etc., with strong community support and open source resources. 3. PHP is an interpreted language, and the execution process includes lexical analysis, grammatical analysis, compilation and execution. 4.PHP can be combined with MySQL for advanced applications such as user registration systems. 5. When debugging PHP, you can use functions such as error_reporting() and var_dump(). 6. Optimize PHP code to use caching mechanisms, optimize database queries and use built-in functions. 7

PHP: The Foundation of Many WebsitesPHP: The Foundation of Many WebsitesApr 13, 2025 am 12:07 AM

The reasons why PHP is the preferred technology stack for many websites include its ease of use, strong community support, and widespread use. 1) Easy to learn and use, suitable for beginners. 2) Have a huge developer community and rich resources. 3) Widely used in WordPress, Drupal and other platforms. 4) Integrate tightly with web servers to simplify development deployment.

Beyond the Hype: Assessing PHP's Role TodayBeyond the Hype: Assessing PHP's Role TodayApr 12, 2025 am 12:17 AM

PHP remains a powerful and widely used tool in modern programming, especially in the field of web development. 1) PHP is easy to use and seamlessly integrated with databases, and is the first choice for many developers. 2) It supports dynamic content generation and object-oriented programming, suitable for quickly creating and maintaining websites. 3) PHP's performance can be improved by caching and optimizing database queries, and its extensive community and rich ecosystem make it still important in today's technology stack.

What are Weak References in PHP and when are they useful?What are Weak References in PHP and when are they useful?Apr 12, 2025 am 12:13 AM

In PHP, weak references are implemented through the WeakReference class and will not prevent the garbage collector from reclaiming objects. Weak references are suitable for scenarios such as caching systems and event listeners. It should be noted that it cannot guarantee the survival of objects and that garbage collection may be delayed.

Explain the __invoke magic method in PHP.Explain the __invoke magic method in PHP.Apr 12, 2025 am 12:07 AM

The \_\_invoke method allows objects to be called like functions. 1. Define the \_\_invoke method so that the object can be called. 2. When using the $obj(...) syntax, PHP will execute the \_\_invoke method. 3. Suitable for scenarios such as logging and calculator, improving code flexibility and readability.

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

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)
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
WWE 2K25: How To Unlock Everything In MyRise
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)