这篇文章主要为大家详细介绍了PHP 通过tcp协议连接服务器的简单示例,具有一定的参考价值,可以用来参考一下。
对PHP 通过tcp协议连接服务器方法感兴趣的小伙伴,下面一起跟随四海网的小编两巴掌来看看吧!
<?php
/**
* PHP 通过tcp协议连接服务器方法
* @param
* @arrange (512.笔记) www.q1010.com
**/
$host="10.50.75.20"; $port = 4700;
$timeout = 30;
// open a client connection
try{
$fp = fsockopen ($host, $port, $errno, $errstr,$timeout);
}
catch (Exception $e) {
echo "Caught exception: ",$e->getMessage(),"\n";
exit;
}
if (!$fp)
{
$result = "Error: could not open socket connection";
}
else
{
fwrite ($fp, $message);
// get the result
//while (!feof($fp)) {
//$result .= fgets($fp, 128);
//}
//$result .= fgets ($fp, 1024);
// close the connection
fputs ($fp, "END");
fclose ($fp);
// trim the result and remove the starting ?
$result = trim($result);
$result = substr($result, 2);
}
/*** 来自四海网(www.q1010.com) ***/
<?php
/**
* PHP 通过tcp协议连接服务器方法
* @param
* @arrange (512.笔记) www.q1010.com
**/
$sendStr=“client send messages”; $socket = socket_create(AF_INET, SOCK_STREAM, SOL_TCP)
or die("Unable to create socket\n");
//socket_set_nonblock($socket)
//or die("Unable to set nonblock on socket\n");
$time = time();
while (!@socket_connect($socket, $host, $port))
{
$err = socket_last_error($socket);
if ($err == 115 || $err == 114)
{
if ((time() - $time) >= $timeout)
{
socket_close($socket);
die("Connection timed out.\n");
}
sleep(1);
continue;
}
die(socket_strerror($err) . "\n");
}
socket_send($socket,$sendStr,strlen($sendStr),0);
socket_close($socket);
/*** 来自四海网(www.q1010.com) ***/
本文来自:http://www.q1010.com/173/1456-0.html
注:关于PHP 通过tcp协议连接服务器的简单示例的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:tcp
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。