Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有这条线:
if (date(H) < 16) { } else { }
我只是说,if it is before 6PM, do something
if it is before 6PM, do something
但是,它不起作用。但是如果我在其中添加一些数字,例如,
if (date(H) < 1655) {
一个虚假的小时,然后它就起作用了。这是我以前使用过的一个基本概念,我在这里错过了什么吗?
编辑:我在下午 6 点之后进行实时测试,但得到了下午 6 点之前的结果。
更改date(H)为date('H')
date(H)
date('H')
和6PM = 18hr
6PM = 18hr