可能重复:
保存整个网页
我需要使用 PHP 保存外部链接的页面源,就像我们保存在 PC 中一样。
ps :saved 文件夹包含图像和 html 内容。
我尝试了下面的代码......它只是将源代码放在 tes.html 中,我也需要保存所有图像。所以我们在离线时访问。
<?php
include 'curl.php';
$game = load("https://otherdomain.com/");
echo $game;
?>
<?php
file_put_contents('tes.html', $game);
?>