在 iOS 应用程序中,我必须设置 cron 以在每 5 分钟后向特定设备发送通知。我正在使用frapi API。我对其进行了搜索,发现我必须像这样创建 cron 条目:
/etc/cron.d/
*/5 * * * * root cd /path_to_your_script/ && php your_script.php >> /var/some.log &2>&1
I wonder where and how can i set above commands ?
我的脚本已准备好发送通知,如下所示:
<?php
// Device token:
$deviceToken = 'xxxxxx';
$passphrase = 'xxxxx';
$badge = 1;
// Displays alert message here:
$message = 'Match Found!';
$ctx = stream_context_create();
stream_context_set_option($ctx, 'ssl', 'local_cert', '/Users/Documents/iOS_Application_Developement/new/APNSPHP/ApnsPHP-master/ck.pem');
stream_context_set_option($ctx, 'ssl', 'passphrase', $passphrase);
// Open a connection to the APNS server
$fp = stream_socket_client('ssl://gateway.sandbox.push.apple.com:2195', $err,$errstr, 60, STREAM_CLIENT_CONNECT|STREAM_CLIENT_PERSISTENT, $ctx);
if (!$fp)
exit("Failed to connect: $err $errstr" . PHP_EOL);
echo 'Connected to APNS' . PHP_EOL;
// Create the payload body
$body['aps'] = array(
'alert' => $message,
'badge' => $badge,
'sound' => 'default'
);
// Encode the payload as JSON
$payload = json_encode($body);
// Build the binary notification
$msg = chr(0) . pack('n', 32) . pack('H*', $deviceToken) . pack('n', strlen($payload)) . $payload;
// Send it to the server
$result = fwrite($fp, $msg, strlen($msg));
if (!$result)
echo 'Message not delivered' . PHP_EOL;
else
echo 'Message successfully delivered' . PHP_EOL;
// Close the connection to the server
fclose($fp);
?>
我的 php 脚本已准备好,但我不知道如何在每 5 分钟后运行一次。我正在使用 Frapi API。有人知道如何在 Frapi API(php 和 iOS)中设置和运行 Cronjob。
我是这个 cron 工作的新手..所以任何帮助将不胜感激。