Home  >  Article  >  Backend Development  >  linux http_proxy 与 php curl的问题

linux http_proxy 与 php curl的问题

WBOY
WBOYOriginal
2016-06-23 14:17:371302browse

本帖最后由 lzcwxc1986 于 2013-07-30 17:40:20 编辑

foo.php内容如下
<?php$ch= curl_init();curl_setopt($ch, CURLOPT_URL, "http://www.google.com");curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);curl_setopt($ch, CURLOPT_TIMEOUT, 60);$res = curl_exec($ch);var_dump($res);

linux服务器设置代理后,在服务器上直接命令行执行 php foo.php,$res返回值为google页面内容。服务器上php+apache,浏览器请求 foo.php ,返回超时。无法请求google.com。

通过apache请求php时,curl不走代理吗?

回复讨论(解决方案)

还是说是因为linux用户的问题,apache不是以root用户启动的。

但是http_proxy已经加入到/etc/profile里面,而且已经source过了。

curl_setopt($ch, CURLOPT_PROXY, '代理服务器名:端口'); 
curl_setopt($ch, CURLOPT_PROXYUSERPWD, '用户名:口令');//如果有的话

curl_setopt($ch, CURLOPT_PROXY, '代理服务器名:端口'); 
curl_setopt($ch, CURLOPT_PROXYUSERPWD, '用户名:口令');//如果有的话
嗯,知道这种方式是可以的,只是不知道为什么设置Linux http_proxy的方式不行。

沉了。。。。。。。。。。。。。。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn