如果文件不存在,我正在尝试将文件检查到某个位置。但是 file_exist 总是返回 false ..
为检查文件添加的功能存在
$file_path = "myconfigfile.config";
private function LoadFile( $file_path ) {
$contents = '';
if(file_exists($file_path)) {
$handle = fopen( $file_path, "r" );
while( !feof( $handle ) ) {
$contents .= fread( $handle, 8192 );
}
@fclose( $handle );
}
return $contents;
}
这两个文件都存在于同一个文件夹中,但仍然没有给出正确的输出
请帮助我