Date (Constructor) [line 105]
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.
Parameters:
addSeconds [line 528]
void addSeconds(
int
$sec)
|
|
Adds a given number of seconds to the date
Adds a given number of seconds to the date
Parameters:
addSpan [line 541]
void addSpan(
object Date_Span
$span)
|
|
Adds a time span to the date
Adds a time span to the date
Parameters:
after [line 689]
Test if this date/time is after a certian date/time
Test if this date/time is after a certian date/time
Parameters:
before [line 671]
Test if this date/time is before a certian date/time
Test if this date/time is before a certian date/time
Parameters:
compare [line 645]
Compares two dates
Compares two dates. Suitable for use in sorting functions.
Parameters:
convertTZ [line 482]
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.
Parameters:
convertTZbyID [line 510]
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.
Parameters:
copy [line 211]
Copy values from another Date object
Makes this Date a copy of another Date object.
Parameters:
equals [line 707]
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
Parameters:
format [line 265]
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 '%'
Parameters:
getDate [line 188]
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.
Parameters:
getDay [line 986]
Returns the day field of the date object
Returns the day field of the date object
getDayName [line 852]
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
Parameters:
getDayOfWeek [line 786]
Gets the day of the week for this date
Gets the day of the week for this date (0=Sunday)
getDaysInMonth [line 825]
Gets number of days in the month for this date
Gets number of days in the month for this date
getHour [line 999]
Returns the hour field of the date object
Returns the hour field of the date object
getJulianDate [line 773]
Get the Julian date for this date
Get the Julian date for this date
getMinute [line 1012]
Returns the minute field of the date object
Returns the minute field of the date object
getMonth [line 973]
Returns the month field of the date object
Returns the month field of the date object
getMonthName [line 870]
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
Parameters:
getNextDay [line 888]
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.
getNextWeekday [line 924]
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.
getPrevDay [line 906]
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.
getPrevWeekday [line 942]
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.
getQuarterOfYear [line 812]
Gets the quarter of the year for this date
Gets the quarter of the year for this date
getSecond [line 1025]
Returns the second field of the date object
Returns the second field of the date object
getTime [line 397]
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.
getWeekOfYear [line 799]
Gets the week of the year for this date
Gets the week of the year for this date
getWeeksInMonth [line 838]
Gets the number of weeks in the month for this date
Gets the number of weeks in the month for this date
getYear [line 960]
Returns the year field of the date object
Returns the year field of the date object
inDaylightTime [line 449]
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.
isFuture [line 724]
Determine if this date is in the future
Determine if this date is in the future
isLeapYear [line 760]
Determine if the year in this date is a leap year
Determine if the year in this date is a leap year
isPast [line 742]
Determine if this date is in the past
Determine if this date is in the past
setDate [line 135]
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.
Parameters:
setDay [line 1072]
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.
Parameters:
setHour [line 1090]
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.
Parameters:
setMinute [line 1107]
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.
Parameters:
setMonth [line 1055]
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.
Parameters:
setSecond [line 1124]
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.
Parameters:
setTZ [line 413]
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().
Parameters:
setTZbyID [line 430]
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().
Parameters:
setYear [line 1038]
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.
Parameters:
subtractSeconds [line 585]
void subtractSeconds(
int
$sec)
|
|
Subtracts a given number of seconds from the date
Subtracts a given number of seconds from the date
Parameters:
subtractSpan [line 598]
void subtractSpan(
object Date_Span
$span)
|
|
Subtracts a time span to the date
Subtracts a time span to the date
Parameters:
toUTC [line 461]
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