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; ?>

preferences:
40.1 ms | 402 KiB | 5 Q