PHP judges two methods for a specified time period _ PHP Tutorial-php Tutorial

Source: Internet
Author: User
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 ';}

...

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.