minor #1520 date() documentation correction (brandonkelly)
authorFabien Potencier <fabien.potencier@gmail.com>
Tue, 30 Sep 2014 17:37:32 +0000 (19:37 +0200)
committerFabien Potencier <fabien.potencier@gmail.com>
Tue, 30 Sep 2014 17:37:32 +0000 (19:37 +0200)
commit82cd5475a3389b40c2c8f13c1b5026b56ad8d182
treeb76d1247cdc5b0e5b3667fd55b15641cdc9c55c6
parent084ca201a737de82323f7613665e7229789aa434
parent2f5a927b72ea5cc644f932e46fe2034ef3a2ae2a
minor #1520 date() documentation correction (brandonkelly)

This PR was merged into the 1.16-dev branch.

Discussion
----------

date() documentation correction

The date() docs were incorrectly stating that the argument should be in a format supported by PHP’s [date()](http://php.net/manual/en/function.date.php) function. That’s true of the |date filter which is used to _format_ dates, but not the date() function, which is used to _create_ new dates.

I double-checked the code and whatever you pass into date() ultimately will get passed to a [DateTime constructor](http://php.net/manual/en/datetime.construct.php), which accepts an actual date string, formatted in one of PHP’s [date and time format](http://php.net/manual/en/datetime.formats.php), which is a different beast than the actual format definition string you might pass into PHP’s date() function.

Commits
-------

2f5a927 date() documentation correction