php编写socket服务TCP/IP

一、开启socket

默认PHP是没有开启Socket的

phpinfo();查看是否开启了socket扩展,否则在php.ini中开启

Windows下的配置
修改php.ini
extension=php_sockets.dll

、服务器端代码的写法
<?php
 error_reporting(E_ALL);
 set_time_limit(0);
 //ob_implicit_flush();

$address = '127.0.0.1';
 $port = 10005;
 //创建端口
if( ($sock = socket_create(AF_INET, SOCK_STREAM, SOL_TCP)) === false) {
  echo "socket_create() failed :reason:" . socket_strerror(socket_last_error()) . "\n";
 }

//绑定
if (socket_bind($sock, $address, $port) === false) {
  echo "socket_bind() failed :reason:" . socket_strerror(socket_last_error($sock)) . "\n";
 }

//监听
if (socket_listen($sock, 5) === false) {
  echo "socket_bind() failed :reason:" . socket_strerror(socket_last_error($sock)) . "\n";
 }

do {
  //得到一个链接
 if (($msgsock = socket_accept($sock)) === false) {
   echo "socket_accepty() failed :reason:".socket_strerror(socket_last_error($sock)) . "\n";
   break;
  }
  //welcome  发送到客户端
 $msg = "<font color='red'>server send:welcome</font><br/>";
  socket_write($msgsock, $msg, strlen($msg));
  echo 'read client message\n';
  $buf = socket_read($msgsock, 8192);
  $talkback = "received message:$buf\n";
  echo $talkback;
  if (false === socket_write($msgsock, $talkback, strlen($talkback))) {
   echo "socket_write() failed reason:" . socket_strerror(socket_last_error($sock)) ."\n";
  } else {
   echo 'send success';
  }
  socket_close($msgsock);
 } while(true);
 //关闭socket
 socket_close($sock);
 ?>

服务器端需要在cli模式是执行,有可能cli模式下php.ini文件载入的不一样

可以像如下输出:


这时候在zhoxh目录下就有个tem.text文件。查看 Configuration File (php.ini) Path => C:\WINDOWS 。不是我的php.ini 文件,这说明调用的php.ini文件时错误的。这时候我们要指定php.ini文件命令如下


注意的是我的php可以直接执行时配置了环境变量。

三、客户端

<?php
 //error_reporting(E_ALL);
 echo "<h2>tcp/ip connection </h2>\n";
 $service_port = 10005;
 $address = '127.0.0.1';

$socket = socket_create(AF_INET, SOCK_STREAM, SOL_TCP);
 if ($socket === false) {
  echo "socket_create() failed: reason: " . socket_strerror(socket_last_error()) . "\n";
 } else {
  echo "OK. \n";
 }

echo "Attempting to connect to '$address' on port '$service_port'...";
 $result = socket_connect($socket, $address, $service_port);
 if($result === false) {
  echo "socket_connect() failed.\nReason: ($result) " . socket_strerror(socket_last_error($socket)) . "\n";
 } else {
  echo "OK \n";
 }
 $in = "HEAD / http/1.1\r\n";
 $in .= "HOST: localhost \r\n";
 $in .= "Connection: close\r\n\r\n";
 $out = "";
 echo "sending http head request ...";
 socket_write($socket, $in, strlen($in));
 echo  "OK\n";

echo "Reading response:\n\n";
 while ($out = socket_read($socket, 8192)) {
  echo $out;
 }
 echo "closeing socket..";
 socket_close($socket);
 echo "ok .\n\n";
执行结果如下:
server:











    • 0
      点赞
    • 0
      收藏
      觉得还不错? 一键收藏
    • 0
      评论

    “相关推荐”对你有帮助么?

    • 非常没帮助
    • 没帮助
    • 一般
    • 有帮助
    • 非常有帮助
    提交
    评论
    添加红包

    请填写红包祝福语或标题

    红包个数最小为10个

    红包金额最低5元

    当前余额3.43前往充值 >
    需支付:10.00
    成就一亿技术人!
    领取后你会自动成为博主和红包主的粉丝 规则
    hope_wisdom
    发出的红包
    实付
    使用余额支付
    点击重新获取
    扫码支付
    钱包余额 0

    抵扣说明:

    1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
    2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

    余额充值