我试图通过cURL获取动态php页面的内容
网上的回复似乎是James Bond
Male, 20 Apr 1991
Email: james@gmail.com
Mobile: 09394949494
Website: www.google.com
Address: Swat
但是当我使用cURL
抓取这个网址时curl给了我这个
Female,
Email:
Mobile:
Website:
Address:
我正在使用此代码:
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'http://localhost/cv/formats/1.php');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
$my_html = curl_exec($ch);
echo $my_html;
curl_close($ch);
答案 0 :(得分:0)
我刚解决了,
我使用会话变量作为条件检查器从mysql检索数据,但是本地会话不能用于cURL请求,因此我必须将我的密钥作为查询字符串传递;)