- 締切済み
phpでbotに3時間ごと、分にツイートさせた
ド素人で申し訳ございません。 if(date("G") % 3 === 0 && date("i") == 11){ $response = $eb->postRandom("data.txt"); } phpで上の記述で、3時間ごと、11分にツイートさせたいのですが、 うまく動きません。 if(date("i") % 15 == 0){ $response = $eb->postRandom("data.txt"); } ネットで拾った15分ごとのこの記述はキチンと動きます。 どこか間違っているでしょうか?
- みんなの回答 (1)
- 専門家の回答
みんなの回答
- okbakasine
- ベストアンサー率27% (67/242)
回答No.1
こういうのは定時処理はcronを使いましょう。