3v4l.org

run code in 300+ PHP versions simultaneously
<?php $ch = curl_init(); $userid = 149; // $url = "http://apitest/user/show"; // $url = "http://apitest/pushserver/messagecreate.json?"; $url = "http://apitest/pushserver/lookupuserid"; $category = 'singer'; // $category = $_POST['category']; $data = array('userid' => $userid ); $headers = array('X_USERNAME' => 's', 'X_PASSWORD'=> '$!' ); $data = array('message' => 'test message', 'user_id'=>' ["1","2","3"]' ); curl_setopt($ch, CURLOPT_HTTPHEADER, $headers); curl_setopt($ch, CURLOPT_HEADER, 1); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_POSTFIELDS, $data); //Find the users of the selected category $users = get_users(array( 'meta_key' => '_talent_category', 'meta_value' => $category, )); echo '<pre>'; // print_r($users); echo '</pre>'; foreach( $users as $user ) { $id = $user->ID; } //Find out which users are registered with the push service //Send push notification to selected user //$var = curl_getinfo($ch); //var_dump ($var); curl_exec($ch); curl_close($ch);
Output for git.master, git.master_jit, rfc.property-hooks
Fatal error: Uncaught Error: Call to undefined function curl_init() in /in/5iQ1c:2 Stack trace: #0 {main} thrown in /in/5iQ1c on line 2
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:
38.12 ms | 401 KiB | 8 Q