PHP初记(7) - 项目根目录的绝对路径

WBOY
Release: 2016-06-13 13:03:06
Original
890 people have browsed it

PHP小记(7) - 项目根目录的绝对路径

?

进行PHP系统开发时,引入文件是一件很头疼的事,原因在于,文件的引用会出现嵌套,所以在这个文件引用方式正确,在另一个文件却引用不进来。

php的文件引用include和require都采用绝对路径的方式。因此,最好的解决办法是,贯穿整个系统开发都采用完整的绝对路径引入方式。

在项目根目录下的配置文件中定义如下全局变量:

define("PROJECT_ROOT", dirname(__FILE__));
Copy after login

那么PROJECT_ROOT就是项目根目录的绝对路径了,在整个系统的文件中都可以采用。

需注意的是,dirname不包括最后的一个斜杠"/"

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 Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!