3v4l.org

run code in 300+ PHP versions simultaneously
<?php $apiKey = "AIzaSyBpcRPUiuo5VHqi7bwABJgcULLovvCKURw"; $registrationIDs = array( "d-p_PSaVM18:APA91bEIS462k_RNIqFosdzMnWNN1-_mS7yOY-AHUyc1_n_VV-ifDC7X5ZOZk_QFVMKma4OWqhW_bUQ5TnJvq9-s7zQA8Ppa-y-Zd0r7ZLLlCg5DlbjAGqUOLuKg1reNoZ_g6di7kFkb"); $message = "hi Shailesh"; $url = 'https://gcm-http.googleapis.com/gcm/send'; $fields = array( 'to' => $registrationIDs, 'data' => array( "message" => $message ), ); $headers = array( 'Authorization: key=' . $apiKey, 'Content-Type: application/json' ); $ch = curl_init(); curl_setopt( $ch, CURLOPT_URL, $url); curl_setopt( $ch, CURLOPT_POST, true); curl_setopt( $ch, CURLOPT_HTTPHEADER, $headers); curl_setopt( $ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($ch, CURLOPT_POST, true); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode( $fields)); $result = curl_exec($ch); echo '<br> err'.curl_error($ch); curl_close($ch); echo $result; ?>

preferences:
51.49 ms | 402 KiB | 5 Q