参考: http://www.netasp.com.cn/valley/gettitle/index.php
コードは次のとおりです:
//get_title.php <BR>$file=file(" http://www.netasp.com.cn"); <BR>$count=count($file); <BR>for($i=0;$i<$count;$i++){ <br> if(eregi("<; title>( .*)</title>",$file[$i],$out)){ <br> $title=$out[0]; <br> } <br>} <br>$title=substr($title,7, -8) ; <br>echo $title; <br>?> <br>