我有一系列单词,每个单词从当天下午5点到第二天下午5点有效,然后下一个单词有效。 周末除外,其中周五的字数持续到周一下午5点。
现在我要做的是确定用户输入的单词是否在该段时间内有效。我有一个工作的例子,工作正常,但我的问题是周末搞砸了一切。我似乎无法弄清楚如何让它们发挥作用。
我找到了一个函数来计算两个时间戳之间出现的周末数
// Figure out how many weekends occured between two dates
function weekends($date1, $date2) {
$d1 = new DateTime('@' . $date1);
$d2 = new DateTime('@' . $date2);
// Compare the two dates
$diff = $d1->diff($d2);
// Get number of days between them
$days = $diff->format('%a');
// Find out day of the week we start on
$start = $d1->format('w');
// Verify we are not on a weekend
if($start == 0 || $start == 6)
return false;
// Number of days until weekend
$until_weekend = 7 - $start; // (6 is Saturday but we are counting today)
// Find out how many days are left between the first weekend and the end
$left = $days - $until_weekend;
// How many weekends
$weekends = floor($left / 7) + 1;
return $weekends;
}
然后我得到一个函数来确定该单词是否对该日期范围有效
// Keyword Validation
function keyword_validate($keywords = array()) {
if(empty($keywords)) return false;
// Break into values
$keyword = $keywords['keyword'];
$contest = $keywords['contest'];
$keywords = $contest['keywords'];
// Get some dates
$now = new DateTime('now');
$start = new DateTime('@' . $contest['start_time']);
$s1 = new DateTime('@' . $contest['start_time']); // value for timestamps
$s2 = new DateTime('@' . $contest['end_time']); // value for timestamps
$end = new DateTime('@' . $contest['end_time']);
// Verify keyword exists
if(in_array($keyword, $keywords) === FALSE)
return false;
// Get index
$index = array_search($keyword, $keywords);
// See if we somehow got more then one keyword
if(count($index) != 1)
return false;
// get number of weekends
$weekends = weekends($start->getTimestamp(), $end->getTimestamp());
// Based on index get the two container timestamps
$s = $s1->add(new DateInterval('P' . $index + $weekends . 'D'));
// Verify start doesn't equal Friday or a Weekend
$e = $s2->add(new DateInterval('P' . $index + $weekends + 1 . 'D'));
if($s === FALSE || $e === FALSE)
return false; // Something really bad happened
// Based on dates find out if the keyword works.
print $s->getTimestamp();
print $e->getTimestamp();
// Get the current time
}
你可能看起来关键字功能不起作用。我正在做的atm是将关键字的索引与day匹配,但如果是星期二(2个周末之后),我该怎么做才能使索引增加4.抱歉,如果这没有任何意义,我有点失落。
答案 0 :(得分:0)
你能不能只拥有一个可以包含七个空格的数组?更改“星期五”索引时,将“星期六”/“星期日”设置为镜像。
答案 1 :(得分:0)
尝试重新定义问题以使其更简单。而不是尝试用有趣的例外来计算数学以找出哪一项与哪一天相关联,而不是尝试创建一个新的数组,其中包含每天的单词值。它看起来像这样:
array(
'cake',
'pie',
'pudding',
'happy', //friday
'happy', //saturday
'happy', //sunday
'nothappy',
...
);
构建此数组应该比您现在尝试执行的操作更简单。一旦你有这个数组,检查应该是微不足道的。