fork(1) download
  1. <?php
  2.  
  3. $time = "00:01:00";
  4. $mult = "25";
  5.  
  6. var_dump(date("d/m/Y H:i:s", strtotime("00:01:00") * $mult));
  7.  
Success #stdin #stdout 0s 83904KB
stdin
Standard input is empty
stdout
string(19) "27/06/3159 00:25:00"