Home  >  Article  >  Backend Development  >  Code Examples of 3 Implementation Methods for Obtaining the Title of a Web Page in PHP_PHP Tutorial

Code Examples of 3 Implementation Methods for Obtaining the Title of a Web Page in PHP_PHP Tutorial

WBOY
WBOYOriginal
2016-07-13 10:32:531185browse

一、推荐方法 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("/(.*)/i",$data, $title);
echo $title[1];
?>

二、使用file()函数

$lines_array = file('http://www.jb51.net/');
$lines_string = implode('', $lines_array);
$pos = strpos($lines_string,'utf-8');
if($pos===false){$lines_string = iconv("gbk","utf-8",$lines_string);}
eregi("(.*)", $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);
?>

www.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...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn