Skip to content

Instantly share code, notes, and snippets.

@nitrix
Created September 29, 2012 20:28
Show Gist options
  • Save nitrix/3805110 to your computer and use it in GitHub Desktop.
Save nitrix/3805110 to your computer and use it in GitHub Desktop.
<?php
$url = 'http://slow.example.com';
$stream = fopen($url, 'r');
stream_set_timeout($stream, 20);
$response_body = stream_get_contents($stream);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment