I am trying to implement push notification for iPhone in php. I have done by the following code:
$body['aps'] = array(
'alert' => $message,
'badge' => 1,
'sound' => 'default'
);
This is sending alert, badge and sound options. Now, how to send the vibrate option? Please help me.