fork download
  1. <?php
  2.  
  3. $roster_input='14:15' ;
  4. $timestamp = strtotime($roster_input) - 7500;
  5. $format = date("H:i", $timestamp );
  6. $date = new DateTime($format, new DateTimeZone('Pacific/Nauru'));
  7. echo $date->format('d-m-y H:i');
  8.  
  9. echo"<br>";
  10.  
  11. $date = new DateTime($format, new DateTimeZone('Indian/Maldives'));
  12. echo $date->format('d-m-y H:i');
  13.  
  14. ?>
Success #stdin #stdout 0.01s 20520KB
stdin
Standard input is empty
stdout
08-03-13 12:10<br>08-03-13 12:10