%PDF- %PDF-
Direktori : /proc/985914/root/www/varak.net/paste.varak.net-5.6/vendor/rmccue/requests/examples/ |
Current File : //proc/985914/root/www/varak.net/paste.varak.net-5.6/vendor/rmccue/requests/examples/timeout.php |
<?php // First, include Requests include('../library/Requests.php'); // Next, make sure Requests can load internal classes Requests::register_autoloader(); // Define a timeout of 2.5 seconds $options = array( 'timeout' => 2.5, ); // Now let's make a request to a page that will delay its response by 3 seconds $request = Requests::get('http://httpbin.org/delay/3', array(), $options); // An exception will be thrown, stating a timeout of the request !