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


Copy this code and paste it in your HTML
  1. //This code is extracted from the comments on the php.net docs
  2. // Quickest: Y-m-d => Brittish Format
  3. print date("d.m.Y",strtotime("2008-01-01"));
  4.  
  5. //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.