Easy transform date format y-m-d => d-m-y on PHP


/ Published in: PHP
Save to your folder(s)

This changes the date format from y-m-d to d-m-y on PHP. It's easy to change the - to / or spaces...


Copy this code and paste it in your HTML
  1. //This code is extracted from the comments on the php.net docs
  2.  
  3. # Date: y-m-d => d-m-y
  4. $time =explode("-","2008-01-01");
  5. krsort($time);
  6. print implode("-",$time);
  7.  
  8. //Will return: 01-01-2008.

URL: http://www.php.net/manual/es/function.date.php#81946

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.