プロキシ経由で外部にアクセスするには以下のようにします。
この例では、proxyを経由してfile_get_contens()で外部にアクセスしています。
1 2 3 4 5 6 7 8 9 10 |
$aContext = array( 'http' => array( 'proxy' => 'tcp://proxy.example.com:8080', 'request_fulluri' => True, ), ); $cxContext = stream_context_create($aContext); $result = file_get_contents($url, false, $cxContext); |
/