update page now
Laravel Live Japan

Voting

The Note You're Voting On

mathieu dot laurent at gmail dot com
16 years ago
Connection via Proxy

<?php

$opts = array('http' => array('proxy' => 'tcp://127.0.0.1:8080', 'request_fulluri' => true));
$context = stream_context_create($opts);

$data = file_get_contents('http://www.php.net', false, $context);

echo $data;

?>

<< Back to user notes page

To Top