Reputation: 25770
I use the following Yii2 PHP code to format my date object taking locale into account Class yii\i18n\Formatter:
$formatter->asDatetime($date, 'short');
It produces the following output:
14.07.18, 20:52
7/14/18, 8:52 PM
I also interested in the seconds, to get something like:
14.07.18, 20:52:32
7/14/18, 8:52:32 PM
How to achieve this with Yii2 or with pure PHP?
Upvotes: 1
Views: 490