Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

change the date format


tommygun86

Recommended Posts

Posted

How can i change the date format ?

I have in the language file the following code :

 

 

define('DATE_FORMAT_SHORT', '%d/%m/%Y');  // this is used for strftime()
define('DATE_FORMAT_LONG', '%A %d %B, %Y'); // this is used for strftime()
define('DATE_FORMAT', 'd/m/Y'); // this is used for date()
define('DATE_TIME_FORMAT', DATE_FORMAT_SHORT . ' %H:%M:%S');

// Return date in raw format
// $date should be in format mm/dd/yyyy
// raw date is in format YYYYMMDD, or DDMMYYYY
function tep_date_raw($date, $reverse = false) {
 if ($reverse) {
return substr($date, 3, 2) . substr($date, 0, 2) . substr($date, 6, 4);
 } else {
return substr($date, 6, 4) . substr($date, 0, 2) . substr($date, 3, 2);
 }
}

 

 

and when i trie to make an account it says that i did't put the correct date with dd/mm/yyyy

what can be the problem ?

Archived

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

×
×
  • Create New...