Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

how to change date format


nihanshe

Recommended Posts

Posted

Hi how to change the date format from the US format to the UK format ie 11/30/2006/ to 30/11/2006

many thanks

Mervyn

Posted

modify the following lines in /includes/languages/english.php as per your requirement:

 

define('DATE_FORMAT_SHORT', '%m/%d/%Y'); // this is used for strftime()

define('DATE_FORMAT_LONG', '%A %d %B, %Y'); // this is used for strftime()

define('DATE_FORMAT', 'm/d/Y'); // this is used for date()

define('DATE_TIME_FORMAT', DATE_FORMAT_SHORT . ' %H:%M:%S');

 

Interchange m and d in above lines

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...