Magento 2 – Change Date Format to DD/MM/YY

dateformatmagento2

My magento2 site date format is no like a MM/DD/YY format but I want to change DD/MM/YY format in my orders page and all other date fields. Please help me I tried and changed configuration settings JavaScript calendar but no changes in dates. Please help me by changing programmatically.

Best Answer

You can change the date format by using the following code.

protected $timezone;

public function __construct(
\Magento\Framework\Stdlib\DateTime\TimezoneInterface $timezone,
......
)
{
    $this->timezone = $timezone;
}

$dateTimeZone = $this->timezone->date(new \DateTime($yourdate))->format('Y/m/d H:i:s');
Related Topic