fork download
  1. <?php
  2.  
  3. $received = date("Y")."-4-5";
  4. $date = strtotime($received);
  5.  
  6. $newformat = date('Y-F-j',$date);
  7. echo $newformat;
  8.  
  9. ?>
Success #stdin #stdout 0.01s 20520KB
stdin
Standard input is empty
stdout
2013-April-5