晋太元中,武陵人捕鱼为业。缘溪行,忘路之远近。忽逢桃花林,夹岸数百步,中无杂树,芳草鲜美,落英缤纷。渔人甚异之,复前行,欲穷其林。 林尽水源,便得一山,山有小口,仿佛若有光。便舍船,从口入。初极狭,才通人。复行数十步,豁然开朗。土地平旷,屋舍俨然,有良田、美池、桑竹之属。阡陌交通,鸡犬相闻。其中往来种作,男女衣着,悉如外人。黄发垂髫,并怡然自乐。 见渔人,乃大惊,问所从来。具答之。便要还家,设酒杀鸡作食。村中闻有此人,咸来问讯。自云先世避秦时乱,率妻子邑人来此绝境,不复出焉,遂与外人间隔。问今是何世,乃不知有汉,无论魏晋。此人一一为具言所闻,皆叹惋。余人各复延至其家,皆出酒食。停数日,辞去。此中人语云:“不足为外人道也。”(间隔 一作:隔绝) 既出,得其船,便扶向路,处处志之。及郡下,诣太守,说如此。太守即遣人随其往,寻向所志,遂迷,不复得路。 南阳刘子骥,高尚士也,闻之,欣然规往。未果,寻病终。后遂无问津者。
|
Server : Apache System : Linux srv.rainic.com 4.18.0-553.47.1.el8_10.x86_64 #1 SMP Wed Apr 2 05:45:37 EDT 2025 x86_64 User : rainic ( 1014) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/akaindir/www/crm/modules/Mobile/third-party/qCal/qCal/DateTime/Recur/ |
Upload File : |
<?php
class qCal_DateTime_Recur_Yearly extends qCal_DateTime_Recur {
/**
* @todo This is a god method that really should be split out into each
* of the qCal_DateTime_Recur_Rule_ByXXX classes. For now I did all the logic
* here to keep it simple and not confuse myself more than necessary.
*/
protected function doGetRecurrences($rules, $start, $end) {
// an array to store recurrences
$recurrences = array();
// start day, year, and month
$sday = $start->format('d');
$smonth = $start->format('m');
$syear = $start->format('Y');
// end day, year, and month
$eday = $end->format('d');
$emonth = $end->format('m');
$eyear = $end->format('Y');
// loop over years, by increment
$year = $syear;
while ($year <= $eyear) {
// if byMonth is specified...
if (count($this->byMonth())) {
// loop over each month
for ($month = 1; $month <= 12; $month++) {
// if this is the start year still and we haven't reached the start month, skip ahead
if ($year == $syear && $month < $smonth) {
continue;
}
// if this is the end year and we have passed the end month, break out of loop
if ($year == $eyear && $month > $emonth) {
break;
}
// if this is not one of the bymonths, continue as well
if (!in_array($month, $this->byMonth())) {
continue;
}
// now we need to loop over each day of the month to look for byday or bymonthday
$thismonth = new qCal_Date(); // used to determine total days in the current month
$thismonth->setDate($year, $month, 1);
$weekdays = array(
'MO' => 0,
'TU' => 0,
'WE' => 0,
'TH' => 0,
'FR' => 0,
'SA' => 0,
'SU' => 0,
);
// @todo For now this only allows 1SU, SU, but not -1SU (no negatives for now)
for ($day = 1; $day <= $thismonth->format('t'); $day++) {
$alreadyadded = false;
$date = new qCal_Date;
$date->setDate($year, $month, $day);
$date->setTime(0, 0, 0);
$wdname = strtoupper(substr($date->format('l'), 0, 2));
// keep track of how many of each day of the week have gone by
$weekdays[$wdname]++;
// if byDay is specified...
// @todo this is inconsistent, I don't use the getter here because of its special functionality.
// I need to either remove the special functionality or not use getters elsewhere in this method
$byday = $this->byday;
if (count($byday)) {
// by day is broken into an array of arrays like array('TH' => 0), array('FR' => 1), array('MO' => -2) etc.
// with zero meaning every instance of that particular day should be included and number meaning the Nth of that day
foreach ($byday as $val) {
// if at least one of this wday has gone by...
$num = current($val);
if ($weekdays[$wdname] > 0) {
// check if it is the right week day and if a digit is specified (like 1SU) that it is checked as well
if ($wdname == key($val) && ($weekdays[$wdname] == $num || $num == 0)) {
$recurrences[] = $date;
$alreadyadded = true;
}
}
}
}
// if byMonthDay is specified...
if (count($this->byMonthDay())) {
foreach ($this->byMonthDay() as $mday) {
// only add this day if it hasn't been added already
if ($mday == $day && !$alreadyadded) {
$recurrences[] = $date;
}
}
}
// now loop over each hour and add hours
if (count($this->byHour())) {
$hourrecurrences = array();
foreach ($this->byHour() as $hour) {
$new = new qCal_Date();
$new = $new->copy($date);
$new->setTime($hour, 0, 0);
$hourrecurrences[] = $new;
}
}
// now loop over byHours and add byMinutes
if (count($this->byMinute())) {
if (!isset($minuterecurrences)) $minuterecurrences = array();
foreach ($this->byMinute() as $minute) {
$new = new qCal_Date();
$new = $new->copy($date);
$new->setTime(0, $minute, 0);
}
}
// now loop over byMinutes and add bySeconds
}
}
}
// if in the first year we don't find an instance, don't do the interval, just increment a year
if ($year == $syear && count($recurrences)) $year += $this->interval();
else ($year++);
}
// now loop over weeks to get byWeekNo
foreach ($recurrences as $date) {
// pr($date->format("r"));
}
// exit;
return $recurrences;
// for bymonth, it would make the most sense to loop over each month until the specified one
// is found. Then loop over each day to find its sub-rules.
// for byweekno, it would make the most sense to loop over each week until the specified one
// is found. Then apply any sub-rules (actually I'm not sure how byhour and its ilk would be applied in this situation... need to read the rfc)
}
}