Reputation: 163
How to check if an IP address is active or dead ? with php
Upvotes: 0
Views: 7208
Reputation: 1
Try Free software"Advanced IP Scanner".It's really helpful for this purpose.
Naseem
Upvotes: 0
Reputation: 2619
Is this an IP address on a network, or a server IP address? You could use PHP's exec command;
$output = exec('ping 127.0.0.1');
output will equal the executed command output;
Upvotes: 1