PHP Classes

File: examples/01-basic-usage.php

Recommend this page to a friend!
  Classes of Sergey Shuchkin   React PHP HTTP Client   examples/01-basic-usage.php   Download  
File: examples/01-basic-usage.php
Role: Example script
Content type: text/plain
Description: Example script
Class: React PHP HTTP Client
Process HTTP request responses asynchronously
Author: By
Last change:
Date: 4 years ago
Size: 433 bytes
 

Contents

Class file image Download
<?php

require_once __DIR__ . '/../vendor/autoload.php';

$loop = \React\EventLoop\Factory::create();

$http = new \Shuchkin\ReactHTTP\Client( $loop );

$http->get( 'https://tools.ietf.org/html/rfc2616' )->then( function ( $content ) {

    echo
$content;

}, function ( \
Exception $ex ) {

    echo
'HTTP error '.$ex->getCode().' '.$ex->getMessage();

} );

//$http->on('debug', function( $s ) { echo trim($s).PHP_EOL; } );

$loop->run();