通过代理没有卷曲的PHP

时间:2012-06-20 06:04:34

标签: php

如何通过localhost:8888代理连接php,以便fiddler可以调试php网络流量?如何在不使用curl库的情况下执行此操作?使用fsockopen代替。,使用fwrite和fread。

1 个答案:

答案 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);