dolibarr
x.y.z
|
Set of function to manipulate dates. More...
Go to the source code of this file.
Functions | |
get_tz_array () | |
Return an array with timezone values. More... | |
getServerTimeZoneString () | |
Return server timezone string. More... | |
getServerTimeZoneInt ($refgmtdate='now') | |
Return server timezone int. More... | |
dol_time_plus_duree ($time, $duration_value, $duration_unit, $ruleforendofmonth=0) | |
Add a delay to a date. More... | |
convertTime2Seconds ($iHours=0, $iMinutes=0, $iSeconds=0) | |
Convert hours and minutes into seconds. More... | |
convertSecondToTime ($iSecond, $format='all', $lengthOfDay=86400, $lengthOfWeek=7) | |
Return, in clear text, value of a number of seconds in days, hours and minutes. More... | |
convertDurationtoHour ($duration_value, $duration_unit) | |
Convert duration to hour. More... | |
dolSqlDateFilter ($datefield, $day_date, $month_date, $year_date, $excludefirstand=0, $gm=false) | |
Generate a SQL string to make a filter into a range (for second of date until last second of date). More... | |
dol_stringtotime ($string, $gm=1) | |
Convert a string date into a GM Timestamps date Warning: YYYY-MM-DDTHH:MM:SS+02:00 (RFC3339) is not supported. More... | |
dol_get_prev_day ($day, $month, $year) | |
Return previous day. More... | |
dol_get_next_day ($day, $month, $year) | |
Return next day. More... | |
dol_get_prev_month ($month, $year) | |
Return previous month. More... | |
dol_get_next_month ($month, $year) | |
Return next month. More... | |
dol_get_prev_week ($day, $week, $month, $year) | |
Return previous week. More... | |
dol_get_next_week ($day, $week, $month, $year) | |
Return next week. More... | |
dol_get_first_day ($year, $month=1, $gm=false) | |
Return GMT time for first day of a month or year. More... | |
dol_get_last_day ($year, $month=12, $gm=false) | |
Return GMT time for last day of a month or year. More... | |
dol_get_last_hour ($date, $gm='tzserver') | |
Return GMT time for last hour of a given GMT date (it replaces hours, min and second part to 23:59:59) More... | |
dol_get_first_hour ($date, $gm='tzserver') | |
Return GMT time for first hour of a given GMT date (it removes hours, min and second part) More... | |
dol_get_first_day_week ($day, $month, $year, $gm=false) | |
Return first day of week for a date. More... | |
getGMTEasterDatetime ($year) | |
Return the easter day in GMT time. More... | |
num_public_holiday ($timestampStart, $timestampEnd, $country_code='', $lastday=0, $includesaturday=-1, $includesunday=-1, $includefriday=-1, $includemonday=-1) | |
Return the number of non working days including Friday, Saturday and Sunday (or not) between 2 dates in timestamp. More... | |
num_between_day ($timestampStart, $timestampEnd, $lastday=0) | |
Function to return number of days between two dates (date must be UTC date !) Example: 2012-01-01 2012-01-02 => 1 if lastday=0, 2 if lastday=1. More... | |
num_open_day ($timestampStart, $timestampEnd, $inhour=0, $lastday=0, $halfday=0, $country_code='') | |
Function to return number of working days (and text of units) between two dates (working days) More... | |
monthArray ($outputlangs, $short=0) | |
Return array of translated months or selected month. More... | |
getWeekNumbersOfMonth ($month, $year) | |
Return array of week numbers. More... | |
getFirstDayOfEachWeek ($TWeek, $year) | |
Return array of first day of weeks. More... | |
getLastDayOfEachWeek ($TWeek, $year) | |
Return array of last day of weeks. More... | |
getWeekNumber ($day, $month, $year) | |
Return week number. More... | |
Set of function to manipulate dates.
Definition in file date.lib.php.
convertDurationtoHour | ( | $duration_value, | |
$duration_unit | |||
) |
Convert duration to hour.
int | $duration_value | Duration value |
int | $duration_unit | Duration unit |
Definition at line 330 of file date.lib.php.
convertSecondToTime | ( | $iSecond, | |
$format = 'all' , |
|||
$lengthOfDay = 86400 , |
|||
$lengthOfWeek = 7 |
|||
) |
Return, in clear text, value of a number of seconds in days, hours and minutes.
Can be used to show a duration.
int | $iSecond | Number of seconds |
string | $format | Output format ('all': total delay days hour:min like "2 days 12:30",
|
int | $lengthOfDay | Length of day (default 86400 seconds for 1 day, 28800 for 8 hour) |
int | $lengthOfWeek | Length of week (default 7) |
Definition at line 238 of file date.lib.php.
convertTime2Seconds | ( | $iHours = 0 , |
|
$iMinutes = 0 , |
|||
$iSeconds = 0 |
|||
) |
Convert hours and minutes into seconds.
int | $iHours | Hours |
int | $iMinutes | Minutes |
int | $iSeconds | Seconds |
Definition at line 210 of file date.lib.php.
dol_get_first_day | ( | $year, | |
$month = 1 , |
|||
$gm = false |
|||
) |
Return GMT time for first day of a month or year.
int | $year | Year |
int | $month | Month |
mixed | $gm | False or 0 or 'tzserver' = Return date to compare with server TZ, True or 1 or 'gmt' to compare with GMT date. Example: dol_get_first_day(1970,1,false) will return -3600 with TZ+1, a dol_print_date on it will return 1970-01-01 00:00:00 Example: dol_get_first_day(1970,1,true) will return 0 whatever is TZ, a dol_print_date on it will return 1970-01-01 00:00:00 |
Definition at line 575 of file date.lib.php.
dol_get_first_day_week | ( | $day, | |
$month, | |||
$year, | |||
$gm = false |
|||
) |
Return first day of week for a date.
First day of week may be monday if option MAIN_START_WEEK is 1.
int | $day | Day |
int | $month | Month |
int | $year | Year |
mixed | $gm | False or 0 or 'tzserver' = Return date to compare with server TZ, True or 1 or 'gmt' to compare with GMT date. |
Definition at line 650 of file date.lib.php.
dol_get_first_hour | ( | $date, | |
$gm = 'tzserver' |
|||
) |
Return GMT time for first hour of a given GMT date (it removes hours, min and second part)
int | $date | Date GMT |
mixed | $gm | False or 0 or 'tzserver' = Return date to compare with server TZ, 'gmt' to compare with GMT date. |
Definition at line 635 of file date.lib.php.
dol_get_last_day | ( | $year, | |
$month = 12 , |
|||
$gm = false |
|||
) |
Return GMT time for last day of a month or year.
Note: The timestamp contains last day and last hours (23:59:59)
int | $year | Year |
int | $month | Month |
mixed | $gm | False or 0 or 'tzserver' = Return date to compare with server TZ, True or 1 or 'gmt' to compare with GMT date. |
Definition at line 594 of file date.lib.php.
dol_get_last_hour | ( | $date, | |
$gm = 'tzserver' |
|||
) |
Return GMT time for last hour of a given GMT date (it replaces hours, min and second part to 23:59:59)
int | $date | Date GMT |
mixed | $gm | False or 0 or 'tzserver' = Return date to compare with server TZ, 'gmt' to compare with GMT date. |
Definition at line 621 of file date.lib.php.
dol_get_next_day | ( | $day, | |
$month, | |||
$year | |||
) |
Return next day.
int | $day | Day |
int | $month | Month |
int | $year | Year |
Definition at line 479 of file date.lib.php.
dol_get_next_month | ( | $month, | |
$year | |||
) |
Return next month.
int | $month | Month |
int | $year | Year |
Definition at line 513 of file date.lib.php.
dol_get_next_week | ( | $day, | |
$week, | |||
$month, | |||
$year | |||
) |
Return next week.
int | $day | Day |
int | $week | Week |
int | $month | Month |
int | $year | Year |
Definition at line 553 of file date.lib.php.
dol_get_prev_day | ( | $day, | |
$month, | |||
$year | |||
) |
Return previous day.
int | $day | Day |
int | $month | Month |
int | $year | Year |
Definition at line 463 of file date.lib.php.
dol_get_prev_month | ( | $month, | |
$year | |||
) |
Return previous month.
int | $month | Month |
int | $year | Year |
Definition at line 494 of file date.lib.php.
dol_get_prev_week | ( | $day, | |
$week, | |||
$month, | |||
$year | |||
) |
Return previous week.
int | $day | Day |
int | $week | Week |
int | $month | Month |
int | $year | Year |
Definition at line 534 of file date.lib.php.
dol_stringtotime | ( | $string, | |
$gm = 1 |
|||
) |
Convert a string date into a GM Timestamps date Warning: YYYY-MM-DDTHH:MM:SS+02:00 (RFC3339) is not supported.
If parameter gm is 1, we will use no TZ, if not we will use TZ of server, not the one inside string.
string | $string | Date in a string YYYYMMDD YYYYMMDDHHMMSS YYYYMMDDTHHMMSSZ YYYY-MM-DDTHH:MM:SSZ (RFC3339) DD/MM/YY or DD/MM/YYYY (deprecated) DD/MM/YY HH:MM:SS or DD/MM/YYYY HH:MM:SS (deprecated) |
int | string | $gm | 'gmt' or 1 =Input date is GM date, 'tzserver' or 0 =Input date is date using PHP server timezone |
Definition at line 407 of file date.lib.php.
dol_time_plus_duree | ( | $time, | |
$duration_value, | |||
$duration_unit, | |||
$ruleforendofmonth = 0 |
|||
) |
Add a delay to a date.
int | $time | Date timestamp (or string with format YYYY-MM-DD) |
int | $duration_value | Value of delay to add |
int | $duration_unit | Unit of added delay (d, m, y, w, h, i) |
int | $ruleforendofmonth | Change the behavior of PHP over data-interval, 0 or 1 |
Definition at line 121 of file date.lib.php.
Referenced by FactureRec\getNextDate(), and FactureFournisseurRec\getNextDate().
dolSqlDateFilter | ( | $datefield, | |
$day_date, | |||
$month_date, | |||
$year_date, | |||
$excludefirstand = 0 , |
|||
$gm = false |
|||
) |
Generate a SQL string to make a filter into a range (for second of date until last second of date).
This method allows to maje SQL request that will deal correctly the timezone of server.
string | $datefield | Name of SQL field where apply sql date filter |
int | string | $day_date | Day date (Can be 0 or '' for filter on a month) |
int | string | $month_date | Month date (Can be 0 or '' for filter on a year) |
int | string | $year_date | Year date |
int | $excludefirstand | Exclude first and |
mixed | $gm | False or 0 or 'tzserver' = Input date fields are date info in the server TZ. True or 1 or 'gmt' = Input are date info in GMT TZ. Note: In database, dates are always fot the server TZ. |
Definition at line 358 of file date.lib.php.
get_tz_array | ( | ) |
Return an array with timezone values.
Definition at line 34 of file date.lib.php.
getFirstDayOfEachWeek | ( | $TWeek, | |
$year | |||
) |
Return array of first day of weeks.
array | $TWeek | array of week numbers |
int | $year | Year number |
Definition at line 1132 of file date.lib.php.
getGMTEasterDatetime | ( | $year | ) |
Return the easter day in GMT time.
This function replaces easter_date() that returns a date in local TZ.
int | $year | Year |
Definition at line 720 of file date.lib.php.
getLastDayOfEachWeek | ( | $TWeek, | |
$year | |||
) |
Return array of last day of weeks.
array | $TWeek | array of week numbers |
int | $year | Year number |
Definition at line 1150 of file date.lib.php.
getServerTimeZoneInt | ( | $refgmtdate = 'now' | ) |
Return server timezone int.
string | $refgmtdate | Reference period for timezone (timezone differs on winter and summer. May be 'now', 'winter' or 'summer') |
Definition at line 83 of file date.lib.php.
References dol_now(), and dol_print_date().
getServerTimeZoneString | ( | ) |
Return server timezone string.
Definition at line 72 of file date.lib.php.
getWeekNumber | ( | $day, | |
$month, | |||
$year | |||
) |
Return week number.
int | $day | Day number |
int | $month | Month number |
int | $year | Year number |
Definition at line 1166 of file date.lib.php.
getWeekNumbersOfMonth | ( | $month, | |
$year | |||
) |
Return array of week numbers.
int | $month | Month number |
int | $year | Year number |
Definition at line 1115 of file date.lib.php.
monthArray | ( | $outputlangs, | |
$short = 0 |
|||
) |
Return array of translated months or selected month.
This replace old function monthArrayOrSelected.
Translate | $outputlangs | Object langs |
int | $short | 0=Return long label, 1=Return short label |
Definition at line 1072 of file date.lib.php.
num_between_day | ( | $timestampStart, | |
$timestampEnd, | |||
$lastday = 0 |
|||
) |
Function to return number of days between two dates (date must be UTC date !) Example: 2012-01-01 2012-01-02 => 1 if lastday=0, 2 if lastday=1.
int | $timestampStart | Timestamp start UTC |
int | $timestampEnd | Timestamp end UTC |
int | $lastday | Last day is included, 0: no, 1:yes |
Definition at line 988 of file date.lib.php.
num_open_day | ( | $timestampStart, | |
$timestampEnd, | |||
$inhour = 0 , |
|||
$lastday = 0 , |
|||
$halfday = 0 , |
|||
$country_code = '' |
|||
) |
Function to return number of working days (and text of units) between two dates (working days)
int | $timestampStart | Timestamp for start date (date must be UTC to avoid calculation errors) |
int | $timestampEnd | Timestamp for end date (date must be UTC to avoid calculation errors) |
int | $inhour | 0: return number of days, 1: return number of hours |
int | $lastday | We include last day, 0: no, 1:yes |
int | $halfday | Tag to define half day when holiday start and end |
string | $country_code | Country code (company country code if not defined) |
Definition at line 1014 of file date.lib.php.
num_public_holiday | ( | $timestampStart, | |
$timestampEnd, | |||
$country_code = '' , |
|||
$lastday = 0 , |
|||
$includesaturday = -1 , |
|||
$includesunday = -1 , |
|||
$includefriday = -1 , |
|||
$includemonday = -1 |
|||
) |
Return the number of non working days including Friday, Saturday and Sunday (or not) between 2 dates in timestamp.
Dates must be UTC with hour, min, sec to 0. Called by function num_open_day()
int | $timestampStart | Timestamp start (UTC with hour, min, sec = 0) |
int | $timestampEnd | Timestamp end (UTC with hour, min, sec = 0) |
string | $country_code | Country code |
int | $lastday | Last day is included, 0: no, 1:yes |
int | $includesaturday | Include saturday as non working day (-1=use setup, 0=no, 1=yes) |
int | $includesunday | Include sunday as non working day (-1=use setup, 0=no, 1=yes) |
int | $includefriday | Include friday as non working day (-1=use setup, 0=no, 1=yes) |
int | $includemonday | Include monday as non working day (-1=use setup, 0=no, 1=yes) |
Definition at line 744 of file date.lib.php.