fork download
  1. <?php
  2. $s="PING 8.8.8.8 (8.8.8.8): 56 data bytes
  3. 64 bytes from 8.8.8.8: seq=0 ttl=54 time=28.278 ms
  4.  
  5. --- 8.8.8.8 ping statistics ---
  6. 1 packets transmitted, 1 packets received, 0% packet loss
  7. round-trip min/avg/max = 28.278/28.278/28.278 ms";
  8. preg_match('/time=(.*?) ms/', $s, $m );
  9. print $m[1];
  10. ?>
Success #stdin #stdout 0.01s 82944KB
stdin
Standard input is empty
stdout
28.278