晋太元中,武陵人捕鱼为业。缘溪行,忘路之远近。忽逢桃花林,夹岸数百步,中无杂树,芳草鲜美,落英缤纷。渔人甚异之,复前行,欲穷其林。 林尽水源,便得一山,山有小口,仿佛若有光。便舍船,从口入。初极狭,才通人。复行数十步,豁然开朗。土地平旷,屋舍俨然,有良田、美池、桑竹之属。阡陌交通,鸡犬相闻。其中往来种作,男女衣着,悉如外人。黄发垂髫,并怡然自乐。 见渔人,乃大惊,问所从来。具答之。便要还家,设酒杀鸡作食。村中闻有此人,咸来问讯。自云先世避秦时乱,率妻子邑人来此绝境,不复出焉,遂与外人间隔。问今是何世,乃不知有汉,无论魏晋。此人一一为具言所闻,皆叹惋。余人各复延至其家,皆出酒食。停数日,辞去。此中人语云:“不足为外人道也。”(间隔 一作:隔绝) 既出,得其船,便扶向路,处处志之。及郡下,诣太守,说如此。太守即遣人随其往,寻向所志,遂迷,不复得路。 南阳刘子骥,高尚士也,闻之,欣然规往。未果,寻病终。后遂无问津者。
|
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/Value/ |
Upload File : |
<?php
/**
* Date-Time Value
* @package qCal
* @copyright Luke Visinoni (luke.visinoni@gmail.com)
* @author Luke Visinoni (luke.visinoni@gmail.com)
* @license GNU Lesser General Public License
*
* Value Name: DATE-TIME
*
* Purpose: This value type is used to identify values that specify a
* precise calendar date and time of day.
*
* Formal Definition: The value type is defined by the following
* notation:
*
* date-time = date "T" time ;As specified in the date and time
* ;value definitions
*
* Description: If the property permits, multiple "date-time" values are
* specified as a COMMA character (US-ASCII decimal 44) separated list
* of values. No additional content value encoding (i.e., BACKSLASH
* character encoding) is defined for this value type.
*
* The "DATE-TIME" data type is used to identify values that contain a
* precise calendar date and time of day. The format is based on the
* [ISO 8601] complete representation, basic format for a calendar date
* and time of day. The text format is a concatenation of the "date",
* followed by the LATIN CAPITAL LETTER T character (US-ASCII decimal
* 84) time designator, followed by the "time" format.
*
* The "DATE-TIME" data type expresses time values in three forms:
*
* The form of date and time with UTC offset MUST NOT be used. For
* example, the following is not valid for a date-time value:
*
* DTSTART:19980119T230000-0800 ;Invalid time format
*
* FORM #1: DATE WITH LOCAL TIME
*
* The date with local time form is simply a date-time value that does
* not contain the UTC designator nor does it reference a time zone. For
* example, the following represents Janurary 18, 1998, at 11 PM:
*
* DTSTART:19980118T230000
*
* Date-time values of this type are said to be "floating" and are not
* bound to any time zone in particular. They are used to represent the
* same hour, minute, and second value regardless of which time zone is
* currently being observed. For example, an event can be defined that
* indicates that an individual will be busy from 11:00 AM to 1:00 PM
* every day, no matter which time zone the person is in. In these
* cases, a local time can be specified. The recipient of an iCalendar
* object with a property value consisting of a local time, without any
* relative time zone information, SHOULD interpret the value as being
* fixed to whatever time zone the ATTENDEE is in at any given moment.
* This means that two ATTENDEEs, in different time zones, receiving the
* same event definition as a floating time, may be participating in the
* event at different actual times. Floating time SHOULD only be used
* where that is the reasonable behavior.
*
* In most cases, a fixed time is desired. To properly communicate a
* fixed time in a property value, either UTC time or local time with
* time zone reference MUST be specified.
*
* The use of local time in a DATE-TIME value without the TZID property
* parameter is to be interpreted as floating time, regardless of the
* existence of "VTIMEZONE" calendar components in the iCalendar object.
*
* FORM #2: DATE WITH UTC TIME
*
* The date with UTC time, or absolute time, is identified by a LATIN
* CAPITAL LETTER Z suffix character (US-ASCII decimal 90), the UTC
* designator, appended to the time value. For example, the following
* represents January 19, 1998, at 0700 UTC:
*
* DTSTART:19980119T070000Z
*
* The TZID property parameter MUST NOT be applied to DATE-TIME
* properties whose time values are specified in UTC.
*
* FORM #3: DATE WITH LOCAL TIME AND TIME ZONE REFERENCE
*
* The date and local time with reference to time zone information is
* identified by the use the TZID property parameter to reference the
* appropriate time zone definition. TZID is discussed in detail in the
* section on Time Zone. For example, the following represents 2 AM in
* New York on Janurary 19, 1998:
*
* DTSTART;TZID=US-Eastern:19980119T020000
*
* Example: The following represents July 14, 1997, at 1:30 PM in New
* York City in each of the three time formats, using the "DTSTART"
* property.
*
* DTSTART:19970714T133000 ;Local time
* DTSTART:19970714T173000Z ;UTC time
* DTSTART;TZID=US-Eastern:19970714T133000 ;Local time and time
* ; zone reference
*
* A time value MUST ONLY specify 60 seconds when specifying the
* periodic "leap second" in the time value. For example:
*
* COMPLETED:19970630T235960Z
*/
class qCal_Value_Datetime extends qCal_Value {
/**
* qCal_Date object
*/
protected $value;
/**
* Convert the internal date storage to a string
*/
protected function toString($value) {
return $value->format('Ymd\THis');
}
/**
* This converts to a qCal_Date for internal storage
*/
protected function doCast($value) {
// @todo This may be the wrong place to do this...
if ($value instanceof qCal_DateTime) {
return $value;
}
$date = qCal_DateTime::factory($value);
return $date;
}
}