Closed. This question is off-topic. It is not currently accepting answers. Learn more
想改进这个问题吗Update the question所以堆栈溢出的值小于aa>。
有没有自动的方法来测试两个网页是否完全相同(甚至图像、文本等)。

最佳答案

您可以将两个页面都提取到变量并比较结果这是一个用php编写的简短脚本。

<?php
$page1 = file_get_contents('http://SITE1');
$page2 = file_get_contents('http://SITE2');

if ($page1 == $page2) {
    echo 'Pages are identical';
}
?>

如果可用作实用程序,也可以使用命令行执行此操作你们需要安装wget。
$: wget -O site1 SITE1
$: wget -O site2 SITE2
$: diff site1 site2

我希望能帮上忙

08-28 00:55