3v4l.org

run code in 300+ PHP versions simultaneously
<?php Function apiCall($resource, $action, $query = false) { $private = 'bdc6a6b1f2c5'; $public = ''; date_default_timezone_set('UTC'); $date = gmdate(DATE_RFC1123); $digest = hash_hmac('sha256', strtolower($resource.':'.$action.($query ? ':'.http_build_query($query) : '')).':'.$date, $private); $headers = array( "Date: $date", "Auth: $public/$digest", //"Accept: application/xml" ); $ch = curl_init(); curl_setopt( $ch, CURLOPT_URL, 'http://api.erepublik.com/'.$resource.'/'.$action.(($query) ? '?'.http_build_query($query): "")); curl_setopt( $ch, CURLOPT_HTTPHEADER, $headers ); curl_setopt( $ch, CURLOPT_RETURNTRANSFER, true ); $result = curl_exec( $ch ); curl_close( $ch ); return $result; } $result = apiCall('citizen', 'profile', array('citizenId' => 7921126)); echo $result; ?>
Output for git.master, git.master_jit, rfc.property-hooks
Fatal error: Uncaught Error: Call to undefined function curl_init() in /in/ghoE8:13 Stack trace: #0 /in/ghoE8(21): apiCall('citizen', 'profile', Array) #1 {main} thrown in /in/ghoE8 on line 13
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:
47.39 ms | 401 KiB | 8 Q