Home  >  Article  >  Backend Development  >  How to implement TCP port detection in php, implement tcp port in php_PHP tutorial

How to implement TCP port detection in php, implement tcp port in php_PHP tutorial

WBOY
WBOYOriginal
2016-07-13 09:58:36954browse

How to implement TCP port detection in php, how to implement tcp port in php

The example in this article describes how to implement TCP port detection in php. Share it with everyone for your reference. The details are as follows:

This program can confirm whether the current port is available:

<&#63;php
class Health {
  public static $status;
  public function __construct()
  {
  }
  public function check($ip, $port){
    $sock = socket_create(AF_INET, SOCK_STREAM, SOL_TCP);
    socket_set_nonblock($sock);
    socket_connect($sock,$ip, $port);
    socket_set_block($sock);
    self::$status = socket_select($r = array($sock), $w = array($sock), $f = array($sock), 5);
    return(self::$status); 
  }
  public function checklist($lst){
  }
  public function status(){
    switch(self::$status)
    {
      case 2:
        echo "Closed\n";
        break;
      case 1:
        echo "Openning\n";
        break;
      case 0:
        echo "Timeout\n";
        break;
    }  
  }
}
$ip='192.168.2.10';
$port=80;
$health = new Health();
$health->check($ip, $port);
$health->status();

I hope this article will be helpful to everyone’s PHP programming design.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/977787.htmlTechArticleHow to implement TCP port detection in php, how to implement tcp port in php This article describes how to implement TCP port detection in php. Share it with everyone for your reference. The details are as follows: The program can confirm...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn