fork download
  1. <?php
  2.  
  3. $tempo_total= "30:4:44";
  4.  
  5. if (substr_count($tempo_total, ':')==2){
  6. $tempo_segundos = (int)$tempo_total*3600 + (int)(strstr($tempo_total, ':'))*60 + substr($tempo_total, -2);
  7. }else{
  8. $tempo_segundos = (int)$tempo_total*60 + substr($tempo_total, -2);
  9. }
  10.  
  11. echo $tempo_segundos;
Success #stdin #stdout 0.02s 23772KB
stdin
Standard input is empty
stdout
108044