Si vous exécutez CURLOPT_FOLLOWLOCATION en PHP et que vous obtenez le message d'erreur d'invite php :
Avertissement : curl_setopt() [function.curl-setopt] : CURLOPT_FOLLOWLOCATION ne peut pas être activé en mode sécurisé ou si un open_basedir est défini…
L'erreur mentionne deux éléments clés, safe_mode et open_basedir. Si vous êtes un hôte virtuel et n'avez pas l'autorisation de définir APPCHE, vous ne pouvez pas résoudre le problème en modifiant la configuration du serveur. configuration du serveur safe_mode Tous sont désactivés, puis il existe certaines restrictions sur les utilisateurs pour une certaine sécurité. En définissant open_basedir pour limiter le dossier d'exécution PHP de l'utilisateur de l'hôte virtuel, donc lorsque vous utilisez CURLOPT_FOLLOWLOCATION (fonction php curl, données d'analyse approfondie), une fois. il y a une redirection 301 Le message d'erreur mentionné dans l'article apparaîtra après un certain temps
Après avoir vérifié les informations pertinentes, j'ai rapidement trouvé la solution, //m.sbmmt.com/php-weizijiaocheng-. 362563.html, ces méthodes sont toutes disponibles dans l'aide officielle de php
La méthode spécifique consiste à utiliser curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true) dans l'instruction curl et à personnaliser une fonction dans la fonction php,
code Comme suit :
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; } }
Une fois la fonction définie, remplacez l'instruction curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true) par curl_redir_exec($ch)
Après ceci, je veux votre fichier PHP Il ne devrait y avoir aucune erreur. A propos de ce code, vous pouvez le trouver dans le lien PHP officiel
Le code PHP officiel est le suivant
/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
[. Articles connexes recommandés]
1. Introduction au concept et exemples d'utilisation de la fonction php curl_setopt
3.La fonction php curl_setopt simule un exemple de connexion utilisateur
4.Explication détaillée de l'exemple d'utilisation de Fonction PHP curl_exec
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!