Issue
I am new to the Yii platform, and I am wondering how to change the dateformat. It's currently in the American date format that is YYYY-MM-DD. I want it to be DD-MM-YYYY. Is there any way to this?
Solution
config file add in 'components' => [] You can add it and edit it to your style.
'formatter' => [
'dateFormat' => 'yyyy-MM-dd',
'datetimeFormat' => 'yyyy-MM-dd HH:mm:ss',
'decimalSeparator' => ',',
'thousandSeparator' => ' ',
],
Answered By - wan2008
0 Comments:
Post a Comment
Note: Only a member of this blog may post a comment.