当前位置:编程学习 > php >>

截获网站内容的例子

参考:http://www.netasp.com.cn/valley/gettitle/index.php(做为现在的主流开发语言)

代码如下:
<pre>
<?
//get_title.php(做为现在的主流开发语言)
$file=file("http://www.netasp.com.cn");
$count=count($file);

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

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

【本文版权归作者与奥索网共同拥有,如需转载,请注明作者及出处】    
补充:Web开发 , php ,
CopyRight © 2012 站长网 编程知识问答 www.zzzyk.com All Rights Reserved
部份技术文章来自网络,