ホームページ >バックエンド開発 >PHPチュートリアル >Web サイトのタイトルタグのインターセプトの例 home content_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;>
http://www.bkjia.com/PHPjc/316651.html
www.bkjia.com