<?php
$dir = dirname(__FILE__);
?>
在PHP5.3中,增加了一个新的常量__DIR__,指向当前执行的PHP脚本所在的目录。
例如当前执行的PHP文件为 /www/website/index.php
则__FILE__等于'/www/website/index.php'
而__DIR__等于'/www/website'
现在我们要包含当前文件目录或子目录下的文件,可以直接使用:
<?php
require_once __DIR__ . '/path/to/test.inc.php';
?>
相关文章
- 01-27map和hashmap中的区别
- 01-27Python中tuple和list的区别?Python基础学习!
- 01-27python中查询数据库时fetchone()函数和fetchall()函数的区别
- 01-27web.xml中的ContextLoaderListener和DispatcherServlet区别
- 01-27在C和C++中struct与typedef struct的区别详细介绍
- 01-27JS数组中 forEach() 和 map() 的区别
- 01-27springboot中Thymeleaf和Freemarker模板引擎的区别
- 01-27Spring框架中@Autowired和@Resource的区别
- 01-27js中数组删除 splice和delete的区别,以及delete的使用
- 01-27js中slice()和splice()的区别