Home > php教程 > php手册 > body text

ThinkPHP引入文件的标签_PHP教程_编程技术

WBOY
Release: 2016-06-20 12:33:02
Original
1709 people have browsed it

下面是关于ThinkPHP引入文件的标签总结

 

1,include标签

 

①只解释静态的html等文件,而不能直接包含html文件,它包含的静态文件必须位于当前网站下,不能是一个URL,该文件是一个完整的文件路径,通常从入口文件算起。

//表示包含当前控制器的head动作

//如果head动作不在当前控制器下,那么需要使用:分隔符。

③可以向目标页面传递额外的变量参数,这些参数会被模板引擎解释成PHP变量,这些参数可以在目标页面head.html文件中使用[]进行配对。

 

2,import标签:

 

具有针对性,最常用于引用js或者css文件。以包的形式导入网站中公共静态资源文件

①通过type指定导入文件的类型,所以文件不需要后缀名

②解释路径:用.代替/ 默认路径从Public开始算起。

③支持一次性导入多个文件,文件之间用逗号隔开。

 

3,load标签:

 

导入第三方网站或者使用显式的路径资源文件。使用方法同import

优点:提高了开发效率

缺点:页面中太多的标签一起使用也需要牺牲运行速率。

 



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
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template