0

如果时间是 12 点,我将如何检查 php,如果是,则执行一些代码。这就是我到目前为止所拥有的。

我希望每天在特定时间执行代码,并且只在那个时间执行。

 if (date('H') == 20) 
 {
 //code to be carried out

 CODE
 CODE
 CODE
 echo ("lol");
 }

然而,无论时间如何,编解码器似乎都在运行!

即使时间不是晚上 8 点,程序也会每次都回显 lol。

感谢任何帮助谢谢

4

3 回答 3

2

如果您想在每天的某个时间执行 php 脚本,请查看cron 作业

这里有一个关于如何在 cPanel 中设置 cron 作业的教程。

于 2012-05-27T18:56:19.947 回答
0

它没有在我的测试中呼应:

http://codepad.org/7ZvAKHWh

g 12-hour format of an hour without leading zeros 1 through 12 
G 24-hour format of an hour without leading zeros 0 through 23 
h 12-hour format of an hour with leading zeros 01 through 12 
H 24-hour format of an hour with leading zeros 00 through 23 
于 2012-05-27T18:49:04.373 回答
-1

您的代码应该可以工作,除非不是这样 --- 尝试从原始来源复制

于 2012-05-27T18:49:56.620 回答