二、使用file()函数(.*)", $lines_string, $title);echo $title[1];?>三、使用file">
时间:2021-07-01 10:21:17 帮助过:7人阅读
$c = curl_init();
$url = 'www.php.com';
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("/
二、使用file()函数
$lines_array = file('http://www.php.com/');
$lines_string = implode('', $lines_array);
$pos = strpos($lines_string,'utf-8');
if($pos===false){$lines_string = iconv("gbk","utf-8",$lines_string);}
eregi("
三、使用file_get_contents
$content=file_get_contents("http://www.php.com/");
$pos = strpos($content,'utf-8');
if($pos===false){$content = iconv("gbk","utf-8",$content);}
$postb=strpos($content,'