PHP获取网页标题的2种实现方法代码实例

一、推荐方法 CURL获取

    $c = curl_init();
    $url = 'www.z6.net.cn';
    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);
    echo $title[1];</code></pre>
<p><strong>二、使用file()函数</strong></p>
<pre><code>$lines_array = file('https://www.z6.net.cn/');
    $lines_string = implode('', $lines_array); 
    $pos = strpos($lines_string,'utf-8');
    if($pos===false){
        $lines_string = iconv("gbk","utf-8",$lines_string);
    }
    eregi("<title>(.*)", $lines_string, $title);
    echo $title[1];

二、使用file_get_contents

    $content = file_get_contents("https://www.z6.net.cn/");
    $pos = strpos($content,'utf-8');
    if($pos===false){
        $content = iconv("gbk","utf-8",$content);
    }
    $postb = strpos($content,'')+7;
    $poste = strpos($content,'');
    $length = $poste-$postb;
    echo substr($content,$postb,$length);

未经允许不得转载:任鹏个人博客 » PHP获取网页标题的2种实现方法代码实例

赞 (0) 打赏

评论 0

取消
  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

微信扫一扫打赏