PHP程序员站--PHP编程开发平台
 当前位置:主页 >> PHP基础 >> 基础文章 >> 

截获网页TITLE内容

截获网页TITLE内容

来源:互联网  作者:网络转载  发布时间:2007-12-29
截获网页TITLE内容

参考: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>  


Tags: it   网页   title   内容  
最新文章
推荐阅读
月点击排行榜
PHP程序员站 Copyright © 2007-2010,PHPERZ.COM All Rights Reserved 粤ICP备07503606号