3v4l.org

run code in 300+ PHP versions simultaneously
<?php $curl = curl_init("http://xboxapi.com/v2/messages"); $headers = array(); $headers[] = 'X-AUTH: 43fbeaf84c20c4b3e2b31773a0a23d832d443eb7'; $headers[] = 'Content-Type: application/json'; $data = array( 'to' => '2533274868620973', 'message' => 'test' ); $json = json_encode($data); curl_setopt($curl, CURLOPT_HEADER, false); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); curl_setopt($curl, CURLOPT_POST, true); curl_setopt($curl, CURLOPT_POSTFIELDS, $json); curl_setopt($curl, CURLOPT_HTTPHEADER, $headers); $result = curl_exec($curl); curl_close($curl); print $result;
Output for 7.0.0 - 7.0.20, 7.1.0 - 7.1.20, 7.2.0 - 7.2.33, 7.3.16 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
Fatal error: Uncaught Error: Call to undefined function curl_init() in /in/2tNnS:2 Stack trace: #0 {main} thrown in /in/2tNnS on line 2
Process exited with code 255.
Output for 5.5.0 - 5.5.38, 5.6.0 - 5.6.28
Fatal error: Call to undefined function curl_init() in /in/2tNnS on line 2
Process exited with code 255.

preferences:
181.1 ms | 402 KiB | 223 Q