如何通过localhost:8888代理连接php,以便fiddler可以调试php网络流量?如何在不使用curl库的情况下执行此操作?使用fsockopen代替。,使用fwrite和fread。
答案 0 :(得分: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);