PHP judges two methods for a specified time period. Sometimes we need to perform a task in a certain time period of the day, or perform different tasks in different hours of the day, how can we implement it using PHP, in the following two examples, we may need to perform a task in a certain time period of the day, or perform different tasks in different hours of the day. how can we achieve this using PHP, the two examples below can solve this problem.
1. the judgment code containing the hour and minute is as follows: date_default_timezone_set ("Asia/Shanghai"); $ time = intval (date ("Hi ")); if ($ time> "800" & $ time <"1130") {// code} 2. the code for judging only the hour is as follows: date_default_timezone_set ("Asia/Shanghai "); if (date ('g') <8 | date ('g')> 17) {// code} $ h = intval (date ("H ")); if ($ h> 23 | $ h <7) {echo 'here is the first task';} else {echo 'here is the second task ';}
...