1
ioth 2014-08-26 16:46:05 +08:00
用php绕?
.net可以用啊。 |
2
dryyun 2014-08-26 17:35:23 +08:00 1
PHP 接收Android端的请求 可以实现不?
PHP 发送请求到特定的webservice ,可以实现不? |
3
mengskysama 2014-08-26 17:38:58 +08:00 1
不是httpproxy就可以了吗。哪有那么麻烦
|
4
lichao 2014-08-26 17:43:13 +08:00 1
<?php
header('Content-type: text/plain;charset=utf-8'); $daurl = $_GET['url']; $handle = fopen($daurl, "r"); if ($handle) { while (!feof($handle)) { $buffer = fgets($handle, 4096); echo $buffer; } fclose($handle); } ?> 供参考 https://gist.github.com/libuchao/4054663 |
5
jsq2627 2014-08-26 18:09:13 +08:00 via iPhone 1
HTTP请求转发?这个应该用 nginx 做吧。
|
6
ChoateYao 2014-08-26 20:28:58 +08:00 1
上反向代理即可,何必搞的那么复杂???除非PHP还需要加工数据。
|
7
eiai OP |