<?php

if( exec("ping 127.0.0.1") ) {
  // Ping atılıyor ise 
} else {
 // Ping atılmıyor ise
}
 
<?