gpt4 book ai didi

php - file_exists 相对路径不起作用

转载 作者:可可西里 更新时间:2023-10-31 23:28:48 25 4
gpt4 key购买 nike

file_exists 不工作.. 也尝试过 realpath.. 同样的问题

首先检查文件是否存在.. file_exists 返回 false 但文件仍然被加载

chdir(__DIR__.'/../..');

$file = 'frontend.php';

echo "$file\n";
if(file_exists($file)){
echo "File found\n";
}
else{
echo "File not found\n";
}

require $file;

输出

frontend.php
File not found
Contents of frontend.php

最佳答案

作为php.net/file_exists说,file_exists() 函数需要:

Path to the file or directory.

所以尝试在目录路径前挂起:

if (file_exists(dirname(__FILE__) . $file)) {
echo "File found\n";
}

关于php - file_exists 相对路径不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36082845/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com