0

如何通过 localhost:8888 代理连接 php 以便 fiddler 可以调试 php 网络流量?在不使用 curl 库的情况下如何做到这一点?使用 fsockopen 代替。与 fwrite 和 fread 一起使用。

4

1 回答 1

1
$o = array(
    'http'=> array(
        'method'=>"GET",
        'header'=>"User-Agent: ...\r\n".
        "Accept-Language: en-US,en;q=0.8\r\n",
        'proxy' => 'localhost:8888')
  );            


$x = stream_context_create($o);

$file = file_get_contents('http://www.....com',false,$x);
于 2012-06-20T19:13:20.830 回答