PHP获取某网站的百度快照日期方法 https://www.itbiancheng.com
查询网站快照日期:
输入网址:
http://
/*
php获取某网站的快照时间
2016-1-30
@param str $url 一级域名
@param str 时间格式
*/
function getKuaiZhao($text) {
$url = 'http://www.baidu.com/s?word='.$text;
$html = file_get_contents($url);
$text = str_replace('.','\.',addslashes($text));
$search = '/'.$text.'[^
preg_match($search, $html, $r);
//highlight_string($search);
return $r[1];
}
if($k=='') {
echo('请输入url');
}else{
if($r = getKuaiZhao($k)) {
echo '快照:'.$r;
}else {
echo('无快照');
}
}
?>