linux http_proxy 与 php curl的问题

WBOY
Freigeben: 2016-06-23 14:17:37
Original
1302 Leute haben es durchsucht

本帖最后由 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);
Nach dem Login kopieren

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的方式不行。

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

Quelle:php.cn
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage