欢迎来到福编程网,本站提供各种互联网专业知识!

截获网站title标签之家内容的例子

发布时间:2006-10-09 作者: 来源:转载
参考:http://www.netasp.com.cn/valley/gettitle/index.php代码如下:【本文版权归作者与奥索网共同拥有,如需转载,请注明作者及出处】
参考:http://www.netasp.com.cn/valley/gettitle/index.php

代码如下:

 
//get_title.php
$file=file("http://www.netasp.com.cn");
$count=count($file);

for($i=0;$i<$count;$i++){
if(eregi("(.*)",$file[$i],$out)){
$title=$out[0];
}
}

$title=substr($title,7,-8);
echo $title;
?>

【本文版权归作者与奥索网共同拥有,如需转载,请注明作者及出处】

相关推荐