Php implements TCP port detection, php implements tcp port _ PHP Tutorial

Source: Internet
Author: User
Php implements TCP port detection, and php implements tcp port. Php implements TCP port Detection. php implements tcp port. This article describes how php implements TCP port detection. Share it with you for your reference. The procedure is as follows: This program can confirm the TCP port detection method of php, and php implements tcp port

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

This program can check whether the current port is available:

<?phpclass 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 help you with php programming.

The example in this article describes how to implement TCP port detection in php. Share it with you for your reference. Details: The program can be confirmed...

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.