Jump to content
  • 0

Период времени


alex_web64
 Share

Question

Здравствуйте.

Подскажите, как реализовать выполнение кода в определенные промежутки времени.

Сделал так:
 

var now = new Date(), hours = now.getUTCHours(), minutes = now.getUTCMinutes();if(hours>=7 && (hours<=21 && minutes<=30)) {// do something};

но потом понял, что код не будет работать для 8:31, к примеру.

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

от 7:00 до 21:30 надо каждый день, я верно понимаю?

Вообще можно сравнивать сами объекты типа Date при помощи операторов '<', '>', так же есть сеттеры для манипуляции с датой. Попробуйте с этой стороны на задачу взглянуть.

Link to comment
Share on other sites

  • 0
<?php// Получить значение дня, месяца и года для формирования UTS// начала временного периода.list ($year, $month, $day ) = explode(',', date('Y,n,j'));$start = mktime(7, 0, 0, $month, $day, $year);// Продолжительность временного периода в секундах.$period = 14 * 60 * 60 + 30 * 60;// Текущее значение UTS.$now = time();if (	$now >= $start	&& $now <= $start + $period) {	echo 'Мы в диатазоне с 7:00 до 21:30';}

Код не отлаживал. Если будут ошибки - поправите. Суть, думаю, уловить можно.

Дико извеняюсь не обратил внимание, что тпик в форуме по JS.

// Текущее значение даты.now = new Date();// Получить значение начала временного периода.start = new Date(now.getFullYear(), now.getMonth(), now.getDate(), 7);// Получить значение конца временного периода.end = new Date(now.getFullYear(), now.getMonth(), now.getDate(), 21, 30);if (	now >= start	&& now <= end) {	alert('Мы в диатазоне с 7:00 до 21:30');} else {	alert('Мы вне диапазона с 7:00 до 21:30');}
Edited by CoDy
  • Like 1
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy