当存储在变量中时,CURL POST / GET URL不起作用

时间:2013-01-20 15:32:20

标签: php curl

简而言之......

不起作用

$url = "http://www.example.com/test/index.php?id=1&token=723648723";  <-- Set by previous Curl   
$ch = curl_init(); 
    curl_setopt ($ch, CURLOPT_URL, $url); 
    curl_setopt ($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.6) Gecko/20070725 Firefox/2.0.0.6"); 
    curl_setopt ($ch, CURLOPT_TIMEOUT, 60); 
    curl_setopt ($ch, CURLOPT_FOLLOWLOCATION, 0); 
    curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1); 
    curl_setopt ($ch, CURLOPT_COOKIEJAR, $cookie); 
    curl_setopt ($ch, CURLOPT_COOKIEFILE, $cookie); 
    $html = curl_exec ($ch); 
    echo $html;

作品

$ch = curl_init(); 
    curl_setopt ($ch, CURLOPT_URL, "http://www.example.com/test/index.php?id=1&token=723648723"); 
    curl_setopt ($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.6) Gecko/20070725 Firefox/2.0.0.6"); 
    curl_setopt ($ch, CURLOPT_TIMEOUT, 60); 
    curl_setopt ($ch, CURLOPT_FOLLOWLOCATION, 0); 
    curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1); 
    curl_setopt ($ch, CURLOPT_COOKIEJAR, $cookie); 
    curl_setopt ($ch, CURLOPT_COOKIEFILE, $cookie); 
    $html = curl_exec ($ch); 
    echo $html;

是什么给出的?我尝试过urlencode,urldecode,rawurlencode但没有成功。

显然,在浏览器中发布网址可以正常工作。

编辑:我应该添加url是从另一个在此之前运行的curl获得的。如果我将url存储在变量中它可以工作,但如果我让其他curl设置变量,它就不会。

1 个答案:

答案 0 :(得分:2)

试试这个:

$url = "http://www.example.com/test/index.php?id=1&token=723648723"; // < -- Set by previous Curl
$ch      = curl_init($url); // init with the given $url here

// remove curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.6) Gecko/20070725 Firefox/2.0.0.6");
curl_setopt($ch, CURLOPT_TIMEOUT, 60);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_COOKIEJAR, $cookie);
curl_setopt($ch, CURLOPT_COOKIEFILE, $cookie);

$html = curl_exec($ch);
if ($html === false) // check for errors
{
    // throw new Exception('Curl error: ' . @curl_error($ch));
    echo 'Curl error: ' . @curl_error($ch);
}

@curl_close($ch); // close properly
echo $html;

更新3 :清除html,空格,新行,替换&amp;并强制字符串数据类型......

$url = (string) trim(strip_tags($url));
$url = str_replace('&amp;', '&', $url);
$ch  = curl_init($url);
// etc