test.php 223 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 <?php $ip = "10.4.063"; $exec = exec( "ping -c 3 -s 64 -t 64 ".$ip, $output, $return ); echo $exec; echo "<br />----------------<br />"; print_r( $output ); echo "<br />----------------<br />"; print_r( $return ); ?>