3v4l.org

run code in 300+ PHP versions simultaneously
<?php $url = 'http://www.freesmsgateway.com/api_send'; $post_contacts = array('3408325797'); $json_contacts = json_encode($post_contacts); $fields = array( 'access_token'=>'cd2b648eebfa0f10b49e3be9fe43fc8f', 'message'=>urlencode('Buy one get one free'), 'send_to'=>'post_contacts', 'post_contacts'=>urlencode($json_contacts), ); $fields_string = ''; foreach($fields as $key=>$value) {$fields_string .= $key.'='.$value.'&';} rtrim($fields_string,'&'); $ch = curl_init(); curl_setopt($ch, CURLOPT_URL,$url); curl_setopt($ch, CURLOPT_POST,count($fields)); curl_setopt($ch, CURLOPT_POSTFIELDS,$fields_string); curl_setopt($ch, CURLOPT_RETURNTRANSFER,true); $result = curl_exec($ch); curl_close($ch); print $result; ?>
Output for git.master, git.master_jit, rfc.property-hooks
Fatal error: Uncaught Error: Call to undefined function curl_init() in /in/b78F8:18 Stack trace: #0 {main} thrown in /in/b78F8 on line 18
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:
56.67 ms | 401 KiB | 8 Q