file_get_contents($file)
函数才能获得html编码文件。
功能崩溃返回
无法打开流:无效参数
但是,如果我设置一个文本字符串(包含路径)而不是变量调用,它就可以工作。如果我检查变量内容似乎在崩溃之前已正确设置。
答案 0 :(得分:0)
尝试将$ file转换为字符串:file_get_contents((string)$file);
答案 1 :(得分:0)
$filePath = '/complete/path/to/file.html';
if(is_file($filePath))
{
$fileContents = file_get_contents($filePath);
echo $fileContents; // echo out file contents
}