① php使用curl訪問的頁面中,出現重定向時, 如何獲取重定向後的內容
程序沒問題,能得到網頁內容並輸出。
有可能是你的 xxx.php 沒有重定向成功。
如果在Linux下,可以先用
wget http://www.xxx.com/xxx.php
看看有沒有輸出想要的結果。
我用來測試的 xxx.php
<?php
function redirect($url)
{
if(headers_sent()) {
return false;
}
if(substr($url, 0, 4) != 'http') {
$schema = $_SERVER['SERVER_PORT'] == '443' ? 'https' : 'http';
$host = strlen($_SERVER['HTTP_HOST']) ? $_SERVER['HTTP_HOST'] : $_SERVER['SERVER_NAME'];
$url = "$schema://$host$to";
}
header("HTTP/1.1 301 Moved Permanently");
header("Location: $url");
exit();
}
redirect('http://google.com/');
② php curl post抓取數據顯示405,求大家解決
請問樓主解決了嗎?我現在也遇到這樣的問題,一使用 curl的post就 405,都弄了一天了,還沒解決