fork(3) download
  1. <?php
  2.  
  3. // your code goes here
  4. $date = new DateTime('2000-12-31 00:00:00');
  5. echo $date->format('Y-m-d') . "<br/>";
  6. echo $date->format('H:i') . "<br/>";
  7.  
Success #stdin #stdout 0.02s 24400KB
stdin
Standard input is empty
stdout
2000-12-31<br/>00:00<br/>