3v4l.org

run code in 300+ PHP versions simultaneously
<?php use GuzzleHttp\Client; use GuzzleHttp\Subscriber\Oauth\Oauth1; $client = new Client(); // Using "guzzlehttp/oauth-subscriber" Composer package. $oauth = new Oauth1([ 'consumer_key' => '', 'consumer_secret' => '', 'token' => '', 'token_secret' => '' ]); $client->getEmitter()->attach($oauth); $url = "https://example.com/services/oath2/token"; $response = $client->request( 'POST', $url, [ 'auth' => ['username', 'password'] ] ); echo $response->getBody();
Output for rfc.property-hooks, git.master, git.master_jit
Fatal error: Uncaught Error: Class "GuzzleHttp\Client" not found in /in/3ZJmW:6 Stack trace: #0 {main} thrown in /in/3ZJmW on line 6
Process exited with code 255.

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
137.2 ms | 1483 KiB | 4 Q