3v4l.org

run code in 300+ PHP versions simultaneously
<?php // API access key from Google API's Console define( 'API_ACCESS_KEY', 'AIzaSyA_fOIZM-EjvWyz4qubBMWpbQNLVP9qcmg' ); $registrationIds = array("APA91bG8-nQk8RcGWxKraoy1qKrQG8SIjbi3uOUPG8oTgKjlX2TeXi_wDDfnt9Rfqi_B6K4dWgcqVMiY2p5gubjxB7__pNLoMCx-PBiillCFDpHjlMplflKVmQux_OD8abJuU_AV-RE7ZdIAzmLKMCw5CcXcXuj9g2oPdyyRIBGo9MO4Xo-DD48" ); // prep the bundle $msg = array ( 'message' => 'here is a message. message', 'title' => 'This is a title. title', 'subtitle' => 'This is a subtitle. subtitle', 'tickerText' => 'Ticker text here...Ticker text here...Ticker text here', 'vibrate' => 1, 'sound' => 1 ); $fields = array ( 'registration_ids' => $registrationIds, 'data' => $msg ); $headers = array ( 'Authorization: key=' . API_ACCESS_KEY, 'Content-Type: application/json' ); $ch = curl_init(); curl_setopt( $ch,CURLOPT_URL, 'https://android.googleapis.com/gcm/send' ); 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_POSTFIELDS, json_encode( $fields ) ); $result = curl_exec($ch ); curl_close( $ch ); echo $result;

preferences:
36.75 ms | 402 KiB | 5 Q