1

iOS アプリケーションでは、5 分ごとに特定のデバイスに通知を送信するように cron を設定する必要があります。私は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分ごとに実行する方法がわかりません。

私はこの cron ジョブの初心者です。

4

2 に答える 2

3

crontab があるかどうかを確認する必要があるため、これを行うことができます

入力して端末を確認する

crontab -l

cron タブがない場合は、ダウンロードする必要があります。Mac システムの場合、ここから cronix をダウンロードできます

コマンドを追加し、コマンドで必要な時間間隔を設定します。

于 2013-06-19T11:26:06.330 に答える