I have a model in codeigniter which contains a function that pings servers and stores data in an external server. I am trying to use my main server to call the function on the slave server. Here is the function:
public function check_online($ip, $port){
if(!$socket = stream_socket_client('tcp://'.$ip.':'.$port, $this->timeout)) {
return FALSE;
} else {
return TRUE;
}
}
Help would be very greatly appreciated.