V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  nmdx  ›  全部回复第 17 页 / 共 17 页
回复总数  325
1 ... 8  9  10  11  12  13  14  15  16  17  
2017-07-25 04:46:36 +08:00
回复了 stdying 创建的主题 硬件 台式机配置咨询
又不用买显卡,内存和 ssd 要求也不高。。所以不会被坑钱,g4560 这种核显 cup 随便配配就行了。。 重点是狗东价格耍猴。。买之前查查近期价格 这种 cpu 淘宝散片也是可以考虑的
2017-07-25 03:52:20 +08:00
回复了 nmdx 创建的主题 PHP PHP curl 无法使用非 80 端口的代理?
@VgV ps...你们说的那个 ip:port 的问题。。表示直接一行 curl_setopt($ch, CURLOPT_PROXY, "ip:port" );就可以的。。 大概因为 http 是默认值?
2017-07-25 03:47:58 +08:00
回复了 nmdx 创建的主题 PHP PHP curl 无法使用非 80 端口的代理?
@VgV 因为那个是 80 口的嘛。。。比如这个挂在阿里云的 112.74.50.191:8888 手机可用

p.s.也就是说代码应该是暂时没啥问题了?那可能是环境的问题了。。 没环境测试了(•́ω•̀ ٥)
2017-07-23 16:08:49 +08:00
回复了 nmdx 创建的主题 PHP PHP curl 无法使用非 80 端口的代理?
@VgV 应该不是这个问题。。CURLOPT_PROXYTYPE 的默认值不就是 CURLPROXY_HTTP 嘛。。添加已测试。。
加了一下 curl_error 如下:
1Failed to connect to 189.17.39.3 port 8080: Connection refused. 189.17.39.3:8080 失败
2Failed to connect to 97.72.129.38 port 87: Connection refused. 97.72.129.38:87 失败
3Failed to connect to 139.59.110.186 port 8080: Connection refused. 139.59.110.186:8080 失败
4Failed to connect to 122.241.74.202 port 808: Connection refused. 122.241.74.202:808 失败
5Failed to connect to 112.74.50.191 port 8888: Connection refused. 112.74.50.191:8888 失败
6Failed to connect to 218.75.101.66 port 3128: Connection refused. 218.75.101.66:3128 失败
7Failed to connect to 115.207.81.119 port 808: Connection refused. 115.207.81.119:808 失败
8Failed to connect to 59.62.164.37 port 808: Connection refused. 59.62.164.37:808 失败
9. 183.222.102.108:80 200 成功
10Failed to connect to 148.251.160.237 port 3128: Connection refused. 148.251.160.237:3128 失败
===略
2017-07-22 20:08:43 +08:00
回复了 nmdx 创建的主题 PHP PHP curl 无法使用非 80 端口的代理?
header('Content-Type: text/html; charset=utf-8');
$ip=array(.......);//ip:port

for ($i=0; $i<=count($ip) -1; $i++) {
$dl= $ip[$i];
$ch = curl_init();
curl_setopt($ch, CURLOPT_PROXY, $dl );
curl_setopt($ch, CURLOPT_URL, "http://baidu.com");
curl_setopt($ch, CURLOPT_HEADER, 1);
curl_setopt($ch, CURLOPT_NOBODY, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, 5);
curl_setopt ($ch, CURLOPT_TIMEOUT, 5);
curl_setopt($ch, CURLOPT_FRESH_CONNECT, 1);
if (!curl_exec($ch)) { echo ($i+1).". $dl 失败<br>"; }
$httpcode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
if( $httpcode ==200 )
{
echo ($i+1).". $dl $httpcode 成功<br>";
}
}
curl_close($ch);
1 ... 8  9  10  11  12  13  14  15  16  17  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   5083 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 13ms · UTC 03:57 · PVG 11:57 · LAX 19:57 · JFK 22:57
Developed with CodeLauncher
♥ Do have faith in what you're doing.