检索给定年份的所有&ŧ039;星期一&ŧ039;的。
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了检索给定年份的所有&ŧ039;星期一&ŧ039;的。相关的知识,希望对你有一定的参考价值。
This is a simple function that will return an array of all the dates corresponding to the day 'Monday' for a given year. It's pretty simple and may not be the cleanest way but it works for my purpose.
function getMondays($year) { $newyear = $year; $week = 0; $day = 0; $mo = 1; $i = 1; while ($week != 1) { $day++; } while ($newyear == $year) { $i++; } } return $mondays; }
以上是关于检索给定年份的所有&ŧ039;星期一&ŧ039;的。的主要内容,如果未能解决你的问题,请参考以下文章
检查是否安装了Apache&ŧ039;的modŧu rewrite。