Свойство | Тип | Описание | |
---|---|---|---|
$built_in | array | Array of user-added callback methods | |
$date | string | Input data | |
$day | array | List of days, calendar day name => ordinal day number in the week | |
$day_pcre | string | Cached PCRE for SimplePie_Parse_Date::$day | |
$month | array | List of months, calendar month name => calendar month number | |
$month_pcre | string | Cached PCRE for SimplePie_Parse_Date::$month | |
$timezone | array | List of timezones, abbreviation => offset from UTC | |
$user | array | Array of user-added callback methods |
Метод | Описание | |
---|---|---|
__construct ( ) | Create new SimplePie_Parse_Date object, and set self::day_pcre, self::month_pcre, and self::built_in | |
add_callback ( callback $callback ) | Add a callback method to parse a date | |
date_asctime ( $date ) : integer | Parse C99's asctime()'s date format | |
date_rfc2822 ( $date ) : integer | Parse RFC2822's date format | |
date_rfc850 ( $date ) : integer | Parse RFC850's date format | |
date_strtotime ( $date ) : integer | Parse dates using strtotime() | |
date_w3cdtf ( $date ) : integer | Parse a superset of W3C-DTF (allows hyphens and colons to be omitted, as well as allowing any of upper or lower case "T", horizontal tabs, or spaces to be used as the time separator (including more than one)) | |
get ( ) | Get the object | |
parse ( string $date ) : integer | Parse a date | |
remove_rfc2822_comments ( $string ) : string | Remove RFC822 comments |
public __construct ( ) |
public add_callback ( callback $callback ) | ||
$callback | callback |
public date_asctime ( $date ) : integer | ||
Результат | integer | Timestamp |
public date_rfc2822 ( $date ) : integer | ||
Результат | integer | Timestamp |
public date_rfc850 ( $date ) : integer | ||
Результат | integer | Timestamp |
public date_strtotime ( $date ) : integer | ||
Результат | integer | Timestamp |
public date_w3cdtf ( $date ) : integer | ||
Результат | integer | Timestamp |
public remove_rfc2822_comments ( $string ) : string | ||
Результат | string | Comment stripped string |
public array $built_in | ||
Результат | array |
public array $day | ||
Результат | array |
public string $day_pcre | ||
Результат | string |
public array $month | ||
Результат | array |
public string $month_pcre | ||
Результат | string |
public array $timezone | ||
Результат | array |