我想使用PHP将网站个人资料页面保存为HTML文件。我检查了检查元素,复制html并保存为html文件。它在localhost中运行良好。我使用这个脚本存储为html文件,但页面布局不像检查元素文件那样完美。
<?php
$header = file_get_contents('https://www.domain.com/profile');
file_put_contents('test.html',$header);
?>
如何使用PHP保存像检查元素脚本这样的html元素?
答案 0 :(得分:0)
您可能还需要保存CSS文件。与
$header = file_get_contents('https://url.com');
您只保存索引页。