fork download
  1. <?php
  2.  
  3. $a = new DateTime();
  4. $b = new DateTime();
  5. $c = new DateTime();
  6.  
  7. $arr = [
  8. $a, $b, $c
  9. ];
  10.  
  11. foreach ($arr as $key => $value) {
  12. echo $value->format('Y-m-d');
  13. }
Success #stdin #stdout 0.03s 52472KB
stdin
Standard input is empty
stdout
2016-04-042016-04-042016-04-04