constructor Date [line 114]
Constructor
Creates a new Date Object initialized to the current date/time in the system default time zone by default. A date optionally passed in may be in the ISO, TIMESTAMP or UNIXTIME format, or another Date object.
Tags:
Parameters:
method addSeconds [line 511]
void addSeconds(
int
$sec)
|
|
Adds a given number of seconds to the date
Adds a given number of seconds to the date
Tags:
Parameters:
method after [line 651]
Test if this date/time is after a certian date/time
Test if this date/time is after a certian date/time
Tags:
Parameters:
method before [line 636]
Test if this date/time is before a certian date/time
Test if this date/time is before a certian date/time
Tags:
Parameters:
method compare [line 610]
Compares two dates
Compares two dates. Suitable for use in sorting functions.
Tags:
Parameters:
method convertTZ [line 465]
Converts this date to a new time zone
Converts this date to a new time zone. WARNING: This may not work correctly if your system does not allow putenv() or if localtime() does not work in your environment. See Date::TimeZone::inDaylightTime() for more information.
Tags:
Parameters:
method convertTZbyID [line 493]
void convertTZbyID(
string
$id)
|
|
Converts this date to a new time zone, given a valid time zone ID
Converts this date to a new time zone, given a valid time zone ID WARNING: This may not work correctly if your system does not allow putenv() or if localtime() does not work in your environment. See Date::TimeZone::inDaylightTime() for more information.
Tags:
Parameters:
method copy [line 193]
Copy values from another Date object
Makes this Date a copy of another Date object.
Tags:
Parameters:
method equals [line 666]
Test if this date/time is exactly equal to a certian date/time
Test if this date/time is exactly equal to a certian date/time
Tags:
Parameters:
method format [line 247]
string format(
string
$format)
|
|
Date pretty printing, similar to strftime()
Formats the date in the given format, much like strftime(). Most strftime() options are supported.
formatting options:
1 %a
abbreviated weekday name (Sun, Mon, Tue)
1 %A
full weekday name (Sunday, Monday, Tuesday)
1 %b
abbreviated month name (Jan, Feb, Mar)
1 %B
full month name (January, February, March)
1 %C
century number (the year divided by 100 and truncated to an integer, range 00 to 99)
1 %d
day of month (range 00 to 31)
1 %D
same as "%m/%d/%y"
1 %e
day of month, single digit (range 0 to 31)
1 %E
number of days since unspecified epoch (integer, Date_Calc::dateToDays())
1 %H
hour as decimal number (00 to 23)
1 %I
hour as decimal number on 12-hour clock (01 to 12)
1 %j
day of year (range 001 to 366)
1 %m
month as decimal number (range 01 to 12)
1 %M
minute as a decimal number (00 to 59)
1 %n
newline character (\n)
1 %O
dst-corrected timezone offset expressed as "+/-HH:MM"
1 %o
raw timezone offset expressed as "+/-HH:MM"
1 %p
either 'am' or 'pm' depending on the time
1 %P
either 'AM' or 'PM' depending on the time
1 %r
time in am/pm notation, same as "%I:%M:%S %p"
1 %R
time in 24-hour notation, same as "%H:%M"
1 %S
seconds as a decimal number (00 to 59)
1 %t
tab character (\t)
1 %T
current time, same as "%H:%M:%S"
1 %w
weekday as decimal (0 = Sunday)
1 %U
week number of current year, first sunday as first week
1 %y
year as decimal (range 00 to 99)
1 %Y
year as decimal including century (range 0000 to 9999)
1 %%
literal '%'
Tags:
Parameters:
method getDate [line 170]
string getDate(
[int
$format = DATE_FORMAT_ISO])
|
|
Get a string (or other) representation of this date
Get a string (or other) representation of this date in the format specified by the DATE_FORMAT_* constants.
Tags:
Parameters:
method getDay [line 934]
Returns the day field of the date object
Returns the day field of the date object
Tags:
method getDayName [line 802]
string getDayName(
[boolean
$abbr = false])
|
|
Gets the full name or abbriviated name of this weekday
Gets the full name or abbriviated name of this weekday
Tags:
Parameters:
method getDayOfWeek [line 736]
Gets the day of the week for this date
Gets the day of the week for this date (0=Sunday)
Tags:
method getDaysInMonth [line 775]
Gets number of days in the month for this date
Gets number of days in the month for this date
Tags:
method getHour [line 947]
Returns the hour field of the date object
Returns the hour field of the date object
Tags:
method getJulianDate [line 723]
Get the Julian date for this date
Get the Julian date for this date
Tags:
method getMinute [line 960]
Returns the minute field of the date object
Returns the minute field of the date object
Tags:
method getMonth [line 921]
Returns the month field of the date object
Returns the month field of the date object
Tags:
method getMonthName [line 819]
string getMonthName(
[boolean
$abbr = false])
|
|
Gets the full name or abbriviated name of this month
Gets the full name or abbriviated name of this month
Tags:
Parameters:
method getNextDay [line 836]
Get a Date object for the day after this one
Get a Date object for the day after this one. The time of the returned Date object is the same as this time.
Tags:
method getNextWeekday [line 872]
Get a Date object for the weekday after this one
Get a Date object for the weekday after this one. The time of the returned Date object is the same as this time.
Tags:
method getPrevDay [line 854]
Get a Date object for the day before this one
Get a Date object for the day before this one. The time of the returned Date object is the same as this time.
Tags:
method getPrevWeekday [line 890]
Get a Date object for the weekday before this one
Get a Date object for the weekday before this one. The time of the returned Date object is the same as this time.
Tags:
method getQuarterOfYear [line 762]
Gets the quarter of the year for this date
Gets the quarter of the year for this date
Tags:
method getSecond [line 973]
Returns the second field of the date object
Returns the second field of the date object
Tags:
method getTime [line 380]
Get this date/time in Unix time() format
Get a representation of this date in Unix time() format. This may only be valid for dates from 1970 to ~2038.
Tags:
method getWeekOfYear [line 749]
Gets the week of the year for this date
Gets the week of the year for this date
Tags:
method getWeeksInMonth [line 788]
Gets the number of weeks in the month for this date
Gets the number of weeks in the month for this date
Tags:
method getYear [line 908]
Returns the year field of the date object
Returns the year field of the date object
Tags:
method inDaylightTime [line 432]
boolean inDaylightTime(
)
|
|
Tests if this date/time is in DST
Returns true if daylight savings time is in effect for this date in this date's time zone. See Date_TimeZone::inDaylightTime() for compatability information.
Tags:
method isFuture [line 680]
Determine if this date is in the future
Determine if this date is in the future
Tags:
method isLeapYear [line 710]
Determine if the year in this date is a leap year
Determine if the year in this date is a leap year
Tags:
method isPast [line 695]
Determine if this date is in the past
Determine if this date is in the past
Tags:
method setDate [line 143]
void setDate(
string
$date, [int
$format = DATE_FORMAT_ISO])
|
|
Set the fields of a Date object based on the input date and format
Set the fields of a Date object based on the input date and format, which is specified by the DATE_FORMAT_* constants.
Tags:
Parameters:
method setDay [line 1020]
Set the day field of the date object
Set the day field of the date object, invalid days (not 1-31) are set to 1.
Tags:
Parameters:
method setHour [line 1038]
Set the hour field of the date object
Set the hour field of the date object in 24-hour format. Invalid hours (not 0-23) are set to 0.
Tags:
Parameters:
method setMinute [line 1055]
Set the minute field of the date object
Set the minute field of the date object, invalid minutes (not 0-59) are set to 0.
Tags:
Parameters:
method setMonth [line 1003]
Set the month field of the date object
Set the month field of the date object, invalid months (not 1-12) are set to 1.
Tags:
Parameters:
method setSecond [line 1072]
Set the second field of the date object
Set the second field of the date object, invalid seconds (not 0-59) are set to 0.
Tags:
Parameters:
method setTZ [line 396]
Sets the time zone of this Date
Sets the time zone of this date with the given Date_TimeZone object. Does not alter the date/time, only assigns a new time zone. For conversion, use convertTZ().
Tags:
Parameters:
method setTZbyID [line 413]
void setTZbyID(
string
$id)
|
|
Sets the time zone of this date with the given time zone id
Sets the time zone of this date with the given time zone id, or to the system default if the given id is invalid. Does not alter the date/time, only assigns a new time zone. For conversion, use convertTZ().
Tags:
Parameters:
method setYear [line 986]
Set the year field of the date object
Set the year field of the date object, invalid years (not 0-9999) are set to 0.
Tags:
Parameters:
method subtractSeconds [line 559]
void subtractSeconds(
int
$sec)
|
|
Subtracts a given number of seconds from the date
Subtracts a given number of seconds from the date
Tags:
Parameters:
method toUTC [line 444]
Converts this date to UTC and sets this date's timezone to UTC
Converts this date to UTC and sets this date's timezone to UTC
Tags: