PHP
$c = curl_init();
$url = 'www.jb51.cc';
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("/
echo $title[1];
?>
二、使用file()函数
PHP
$lines_array = file('//www.jb51.cc/');
$lines_string = implode('',$lines_array);
$pos = strpos($lines_string,'utf-8');
if($pos===false){$lines_string = iconv("gbk",$lines_string);}
eregi("
echo $title[1];
?>
三、使用file_get_contents
PHP
$content=file_get_contents("//www.jb51.cc/");
$pos = strpos($content,'utf-8');
if($pos===false){$content = iconv("gbk",$content);}
$postb=strpos($content,'
$poste=strpos($content,'
$length=$poste-$postb;
echo substr($content,$postb,$length);
?> 原文链接:https://www.f2er.com/php/24819.html