当前位置:首页 > PHP教程 > php应用 > 列表

php CURLOPT错误Warning: curl_setopt() [function.curl-setopt]:...

发布:smiling 来源: PHP粉丝网  添加日期:2014-09-20 22:29:17 浏览: 评论:0 

在我们使用php curl函数时提示Warning: curl_setopt() [function.curl-setopt]: CURLOPT_FOLLOWLOCATION cannot be activated when in safe_mode or an open_basedir is set…错误,下面我就来介绍碰到此问题要如何来排除问题吧。

如果当你在php中运行 CURLOPT_FOLLOWLOCATION 然后得到php提示错误信息为:

Warning: curl_setopt() [function.curl-setopt]: CURLOPT_FOLLOWLOCATION cannot be activated when in safe_mode or an open_basedir is set…

错误中提到两个关键safe_mode和 open_basedir,如果你是虚拟主机的没有设置APPCHE的权限是不能通过修改服务器配置来解决问题的,一般来说,服务器配置safe_mode都为off,然后为了一些安全对用户有一些限制,通过设置open_basedir来限制虚拟主机用户的PHP执行文件夹,因此当你使用CURLOPT_FOLLOWLOCATION (php curl函数,深层抓取数据)的时候,一旦有301转向等就会出现文中提到的错误信息.

在查了相关资料后,很快找到了解决办法,http://www.php.net/manual/en/function.curl-setopt.php,这些方法都在php官方帮助里有.

具体做法是在curl语句用不使用curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true),在php函数中自定义一个函数,代码如下:

  1. function curl_redir_exec($ch,$debug=""
  2. static $curl_loops = 0; 
  3. static $curl_max_loops = 20; 
  4. if ($curl_loops++ >= $curl_max_loops
  5. $curl_loops = 0; 
  6. return FALSE; 
  7. curl_setopt($ch, CURLOPT_HEADER, true); 
  8. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); 
  9. $data = curl_exec($ch); 
  10. $debbbb = $data
  11. list($header$data) = explode("\n\n"$data, 2); 
  12. $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE); 
  13. if ($http_code == 301 || $http_code == 302) { 
  14. $matches = array(); 
  15. preg_match('/Location:(.*?)\n/'$header$matches); 
  16. $url = @parse_url(trim(array_pop($matches))); 
  17. //print_r($url); 
  18. if (!$url
  19. //couldn't process the url to redirect to 
  20. $curl_loops = 0; 
  21. return $data
  22. $last_url = parse_url(curl_getinfo($ch, CURLINFO_EFFECTIVE_URL)); 
  23. /*    if (!$url['scheme']) 
  24. $url['scheme'] = $last_url['scheme']; 
  25. if (!$url['host']) 
  26. $url['host'] = $last_url['host']; 
  27. if (!$url['path']) 
  28. $url['path'] = $last_url['path'];*/ 
  29. $new_url = $url['scheme'] . '://' . $url['host'] . $url['path'] . ($url['query']?'?'.$url['query']:''); 
  30. curl_setopt($ch, CURLOPT_URL, $new_url); 
  31. //    debug('Redirecting to', $new_url); 
  32. return curl_redir_exec($ch); 
  33. else {//开源软件:phpfensi.com 
  34. $curl_loops=0; 
  35. return $debbbb

函数定义好后,curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true)这条语句替换为curl_redir_exec($ch).

这样以后,我想你的PHP文件应该不会提示错误了,关于这段代码,在提供PHP官方连接用可以找到.

Tags: CURLOPT curl_setopt function curl-setopt

分享到: