Download the PHP package andydune/datetime without Composer
On this page you can find all versions of the php package andydune/datetime. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download andydune/datetime
More information about andydune/datetime
Files in andydune/datetime
Package datetime
Short Description Extends DateTime class for add some comfort.
License MIT
Homepage https://github.com/AndyDune/DateTime
Informations about the package datetime
DateTime
It extends DateTime class to add some comfort.
Installation
Installation using composer:
Or if composer was not installed globally:
Or edit your composer.json
:
And execute command:
How to create instance
Constructor without parameters set current time value.
Constructor with integer parameter is unit seconds.
Constructor with string parameter is the same for function strtotime()
Constructor with parameter \Datetime
type
Format datetime
It has method format()
to get formated datetiem data as string. Method waits string like date() function.
Dates arithmetic.
Each duration period is represented by an integer value followed by a period designator. If the duration contains time elements, that portion of the specification is preceded by the letter T.
Period Designators:
- Y - years,
- M - months,
- D - days,
- W - weeks,
- H - hours,
- M - minutes,
- S - seconds.
Examples:
The unit types must be entered from the largest scale unit on the left to the smallest scale unit on the right. Use first "-" char for negative periods. OR Relative period.
Examples:
Tools
Bring per day statistics to weeks.
If there is no full weekdays number is source data missing days will be added as average.
Source json:
Weeks are:
Strategy pattent
There is great instrument to manipulatin with DateTime
object without editting existing code in this library.
Methods
DateTime::setAction(AbstractAction $action)
- add action for further execution
DateTime::executeAction(...$params)
- execute actions with any patrams
To know is working day
To know closest working date after pointed days number
There is an action AndyDune\DateTime\Action\PlusWorkingDays
for this task.