我想指向我的目录,但不知道我是怎么做到的?
我的脚本是这样的:
if(is_dir('./anotherfolder/'.$schedule['folder'])) {
$schedules[$key]['files'] = array();
$files = scandir('./anotherfolder/'.$schedule['folder']);
此索引文件位于此目录folder/index.php
中。
我想将其指向anotherfolder/page1.php
。
这意味着我必须退出文件夹然后返回另一个文件夹
答案 0 :(得分:0)
您可以使用__DIR__
代替..
,如下所示:
if (is_dir(__DIR__.'/anotherfolder/') {
当你在folder/index.php
时。
或者您可以使用file_exists
检查php文件是否在该文件夹中:
if (file_exists(__DIR__.'/anotherfolder/page1.php') {