fork download
  1. <?php
  2.  
  3. $time = '12:34:56';
  4.  
  5. preg_match('/(\d+)$/', $time, $matches);
  6. echo $matches[1];
Success #stdin #stdout 0.01s 82944KB
stdin
Standard input is empty
stdout
56