如何使用curl获取google.com的html标记

时间:2014-02-12 05:53:46

标签: php curl

我正在写下面的内容:

    $ch= curl_init();
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
    curl_setopt($ch, CURLOPT_URL, 
            "http://google.com/");
curl_setopt($ch, CURLOPT_HEADER, true);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,true);
    $output= curl_exec($ch);

    curl_close($ch);
if($output==FALSE) return 'No markup';
    return $output;

和html标记,用于接收google.com的标记:

<div class="content">
    <pre>
       <?php
            echo htmlentities($output);
        ?>

    </pre>
</div> 

但是当我运行此脚本时,pre标签包含 nothing 。为什么?如果我将google.com替换为stackoverflow.com,那么它可以正常工作。如何解决这个问题?

0 个答案:

没有答案