Net_Portscan::checkPort() -- check for available service
Description
This function checks if there is a service available at the
specified port on the specified machine.
Parameter
string $host - address of the host
to check
string $port - port to check
string $timeout -
time in seconds to wait for response from host
Return value
boolean - Returns TRUE on success, FALSE on failure.
Note
This function can be called
statically.
Example
Example 38-1. Using checkPort require_once "Net_Portscan/Portscan.php";
if (Net_Portscan::checkPort("localhost", 80) == NET_PORTSCAN_SERVICE_FOUND) {
echo "There is a service on localhost on port 80 (" . Net_Portscan::getService(80) . ").\n";
} |
|