Previous Article

Magento Format Date Core Helper Method

Next Article

To use the dateFormat method you use the core helper.

<?php echo Mage::helper('core')->formatDate($customer->getCreatedAt(), 'full', false); ?>

The second argument accepts 4 options; full, long, medium and short.

The third argument is a boolean value and determines if you want to include the time portion of the date.

Output of each of these formats is shown below for enGB locale

Full: Wednesday, 23rd March 2016

Long: 23 March 2016

Medium: 23 Mar 2016

Short: 23/03/2016

Avatar of Clive Walkden

Clive Walkden

Posted:

Latest Articles

Magento 2 Releases Evolution - Features, Popularity & Issues

Magento 2

A Comprehensive Guide to Major Releases of Magento 2

Explore the evolution of Magento 2 through its major releases, detailing features added, popularity metrics, and issues encountered.

How to Install NordLayer VPN Client on Ubuntu 20.04 and Connect to a Virtual Network

Linux

How to Install NordLayer VPN Client on Ubuntu 20.04 and Connect to a Virtual Network

A simple to follow installation guide for NordLayer VPN

Mastering MySQL Database Imports on Linux - A Comprehensive Guide

MySQL

Mastering MySQL Database Imports on Linux

Learn efficient ways to import MySQL databases on Linux using the mysql command-line client. Explore the --source option and < operator for seamless data migration. Master MySQL imports on Linux with our comprehensive guide.