当前位置:Gxlcms > PHP教程 > 使用PHP截获网页<title></title>内容的方法

使用PHP截获网页<title></title>内容的方法

时间:2021-07-01 10:21:17 帮助过:2人阅读

例如我们要获取的网址为:http://www.codes51.com

代码如下:
 
$urlfile=file("http://www.codes51.com");
$count=count($urlfile);

for($i=0;$i<$count;$i++){
if(eregi("(.*)",$urlfile[$i],$out)){
$title=$out[0];
}
}
$title=substr($title,7,-8);
echo $title;
?>


以上就介绍了使用PHP截获网页内容的方法,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

人气教程排行