PHP で CURLOPT_FOLLOWLOCATION を実行すると、PHP プロンプト エラー メッセージが表示される場合:
警告:curl_setopt() [function.curl-setopt]: CURLOPT_FOLLOWLOCATION は、safe_mode または open_basedir が設定されている場合はアクティブにできません...
エラーsafe_mode と open_basedir の 2 つのキーワードについて言及すると、仮想ホストで APPCHE を設定する権限がない場合、サーバー構成を変更することで問題を解決することはできません。一般的に、サーバー構成のsafe_modeはオフになっています。ユーザーのセキュリティ要件を制限するには、open_basedir を設定して仮想ホスト ユーザーの PHP 実行フォルダーを制限します。そのため、CURLOPT_FOLLOWLOCATION (PHP Curl 関数、ディープ キャプチャ データ) を使用すると、記事に記載されているエラー メッセージが表示されます。 301 リダイレクトなど
関連情報を確認したところ、http://www.php.cn/php-weizijiaocheng-362563.html で解決策が見つかりました。これらの方法はすべて公式 php ヘルプで入手できます。具体的な方法はcurlにあります。ステートメント内でcurl_setopt($ch, CURLOPT_FOLLOWLOCATION, true)を使用するかどうかは、php関数内で関数をカスタマイズします。
コードは次のとおりです:
function curl_redir_exec($ch,$debug="") { static $curl_loops = 0; static $curl_max_loops = 20; if ($curl_loops++ >= $curl_max_loops) { $curl_loops = 0; return FALSE; } curl_setopt($ch, CURLOPT_HEADER, true); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); $data = curl_exec($ch); $debbbb = $data; list($header, $data) = explode("\n\n", $data, 2); $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE); if ($http_code == 301 || $http_code == 302) { $matches = array(); preg_match('/Location:(.*?)\n/', $header, $matches); $url = @parse_url(trim(array_pop($matches))); //print_r($url); if (!$url) { //couldn't process the url to redirect to $curl_loops = 0; return $data; } $last_url = parse_url(curl_getinfo($ch, CURLINFO_EFFECTIVE_URL)); /* if (!$url['scheme']) $url['scheme'] = $last_url['scheme']; if (!$url['host']) $url['host'] = $last_url['host']; if (!$url['path']) $url['path'] = $last_url['path'];*/ $new_url = $url['scheme'] . '://' . $url['host'] . $url['path'] . ($url['query']?'?'.$url['query']:''); curl_setopt($ch, CURLOPT_URL, $new_url); // debug('Redirecting to', $new_url); return curl_redir_exec($ch); } else { $curl_loops=0; return $debbbb; } }
関数を定義した後、ステートメントを置き換えますcurl_setopt($ch, CURLOPT_FOLLOWLOCATION, true) withcurl_redir_exec($ch)
この後、PHP ファイルでエラーが表示されることはないと思います。このコードに関しては、公式の PHP 接続で見つけることができます。
公式のコード。 PHPの概要は以下の通りです
/safe 模式不能curl的函数 function curl_redir_exec($ch) { static $curl_loops = 0; static $curl_max_loops = 20; if ($curl_loops++ >= $curl_max_loops) { $curl_loops = 0; return FALSE; } curl_setopt($ch, CURLOPT_HEADER, true); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); $data = curl_exec($ch); list($header, $data) = explode("\n\n", $data, 2); $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE); if ($http_code == 301 || $http_code == 302) { $matches = array(); preg_match('/Location:(.*?)\n/', $header, $matches); $url = @parse_url(trim(array_pop($matches))); if (!$url) { //couldn't process the url to redirect to $curl_loops = 0; return $data; } $last_url = parse_url(curl_getinfo($ch, CURLINFO_EFFECTIVE_URL)); if (!$url['scheme']) $url['scheme'] = $last_url['scheme']; if (!$url['host']) $url['host'] = $last_url['host']; if (!$url['path']) $url['path'] = $last_url['path']; $new_url = $url['scheme'] . '://' . $url['host'] . $url['path'] . ($url['query']?'?'.$url['query']:''); curl_setopt($ch, CURLOPT_URL, $new_url); debug('Redirecting to', $new_url); return curl_redir_exec($ch); } else { $curl_loops=0; return $data; } } //end
【おすすめ関連記事】
1.
phpのcurl_setopt関数の概念と使用例の紹介Webをキャプチャするphpのcurl_setopt()関数の簡単な使用例ページとPOSTデータユーザーログインをシミュレートするphpのcurl_setopt関数の例PHPのcurl_exec関数の使用例の詳細な説明以上が警告:curl_setopt() [function.curl-setopt]: CURLO...PHPのcurl関数使用時のエラーの解決方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。