我正在尝试获取特定网站的内容,将内容写入 .txt 文件并在我的浏览器中输出未格式化的结果。我实际上可以将网站内容写入我的文本文件,但它不会在我的浏览器中回显。我尝试在原始句柄中使用“w+”和“r+”,但这并没有成功。我在这里做错了什么?
$file = file_get_contents('http://www.example.com');
$handle = fopen("text.txt", "w");
fwrite($handle, $file);
fclose($handle);
$myfile = "text.txt";
$handle = fopen($myfile, "r");
$read = htmlentities(fread($handle, filesize($myfile)));
echo $read;