PHPKonf 2025 Baku

Voting

: max(one, zero)?
(Example: nine)

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