Blogger Information
Blog 30
fans 0
comment 1
visits 24258
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
0109站点模块化方法笔记
Original
537 people have browsed it

站点模块化方法

把HTML代码分成多个模块(文件),再导入进去(类似把CSS代码分开写,再导入到一个CSS里面完成整体效果)
使用include:
导入一个外部文件到当前页面,如果失败,不会终止当前程序。
使用require:
导入一个外部文件到当前页面,如果失败,会终止当前程序

路径

导入的时候可以选择相对路径与绝对路径,相对路径程序加载会慢一点,因为要去搜索路径。
绝对路径加载会快一点,直接根据路径加载文件。
查找路径的方法
使用__DIR__命令

  1. //输出当前文件的路径,需要注意的是,它只会输出到当前文件的目录,不会直接输出到文件名
  2. echo __DIR__;



如果想使用绝对路径,只要在相对路径前面加上__DIR__然后在加一个’/‘就行(大概就是这个意思了)

  1. <?php include __DIR__ . '/demo1.php';?>
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post