一、推薦方法 CURL擷取
$c = curl_init();
$url = 'www.jb51.net';
curl_setopt($c, CURLOPT_URL, $url);
curl_setopt($c, CURLOPT_RETURNTRANSFER, 1);
$data = curl_exec($c);
curl_close($c);
$pos = strpos($data,'utf-8');
if($pos===false){$data = iconv("gbk","utf-8",$data);}
preg_match("/(.*)<\/title>/i",$data, $title);<BR>echo $title[1];<BR>?></p><P>二、使用file()函數</p><P><?php<BR>$lines_array = file('http://www.jb51.net/');<BR>$lines_string = implode('', $lines_array); <BR>$pos = strpos($lines_string,'utf-8');<BR>if($pos===false){$lines_string = iconv("gbk","utf-8",$lines_string);}<BR>eregi("<title>(.*)", $lines_string, $title);
echo $title[1];
?>
三、使用file_get_contents
$content=file_get_contents("http://www.jb51.net/");
$pos = strpos($content,'utf-8');
if($pos===false){$content = iconv("gbk","utf-8",$content);}
$postb=strpos($content,'')+7;<BR>$poste=strpos($content,'');
$length=$poste-$postb;
echo substr($content,$postb,$length);
?>
http://www.bkjia.com/PHPjc/752916.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/752916.htmlTechArticle一、推薦方法 CURL擷取 ?php $c = curl_init(); $url = 'www.jb51.net'; curl_setopt($c, CURLOPT_URL, $url); curl_setopt($c, CURLOPT_RETURNTRANSFER, 1); $data = curl_exec($c); c...