使用 Curl 模拟 Web 浏览器的 GET 请求
尝试使用curl 检索网页时,您可能会遇到似乎源于以下原因的错误无法识别或未实现的请求标头。这是因为curl本身并不模拟网络浏览器的GET请求标头。
要正确模拟网络浏览器,请按照以下步骤操作:
配置用户代理:
处理 Cookie(可选):
验证 SSL 证书:
设置详细模式:
示例代码:
<code class="php">$url = "https://new.aol.com/productsweb/subflows/ScreenNameFlow/AjaxSNAction.do?s=username&f=firstname&l=lastname"; $agent = 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322)'; $ch = curl_init(); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($ch, CURLOPT_VERBOSE, true); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_USERAGENT, $agent); curl_setopt($ch, CURLOPT_URL, $url); $result = curl_exec($ch); var_dump($result);</code>
以上是如何使用 Curl 模拟 Web 浏览器的 GET 请求?的详细内容。更多信息请关注PHP中文网其他相关文章!