PHP determines 2 methods for a specified time period

Source: Internet
Author: User

Sometimes we need to do a task at a certain time of day, or do different tasks in different hours of the day, and how to do that with PHP, and the following two examples can solve this problem

One, contains the hour and minute Judgment code as follows: Date_default_timezone_set ("Asia/shanghai"); $time = intval (Date ("Hi")); if ($time > "a" && $time < "1130") {//code} Two, only the judge hour code is as follows: Date_default_timezone_set ("Asia/shanghai" );  if (Date (' G ') <8 | | date (' g ') >17) {//code} $H = intval (Date ("H")); if ($h > | | $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.