使用php指向目录文件夹

时间:2017-09-25 22:18:36

标签: php

我想指向我的目录,但不知道我是怎么做到的?

我的脚本是这样的:

if(is_dir('./anotherfolder/'.$schedule['folder'])) {
            $schedules[$key]['files'] = array();
            $files = scandir('./anotherfolder/'.$schedule['folder']);

此索引文件位于此目录folder/index.php中。 我想将其指向anotherfolder/page1.php

这意味着我必须退出文件夹然后返回另一个文件夹

1 个答案:

答案 0 :(得分:0)

您可以使用__DIR__代替..,如下所示:

if (is_dir(__DIR__.'/anotherfolder/') {

当你在folder/index.php时。

或者您可以使用file_exists检查php文件是否在该文件夹中:

if (file_exists(__DIR__.'/anotherfolder/page1.php') {