我要疯了
我有这个文件夹和文件结构
- /
- /项目
- /我的测试
- /安装
- /index.php
- /产品
- /安装
- /我的测试
- /资源
- /项目
因此,在我的 install/index.php 文件中,我试图验证 /product 文件夹是否存在。我知道该文件夹存在,但看起来 PHP 不存在。我的代码:
if(file_exists('../../mytest/product') && is_dir('../../mytest/product')) {
echo 'Folder exists!';
} else {
echo 'PHP is blind or something!';
}
也许我很累,但我就是不知道哪里出了问题。在这里休息的一些头脑可能会看到问题。谢谢!