码迷,mamicode.com
首页 > 其他好文 > 详细

swoole 创建tcp服务器

时间:2019-01-15 11:53:03      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:escape   character   启动服务   shift   trying   进程id   tst   receive   star   

server.php

<?php
/**
 * 创建tcp服务器
 * Date: 2019/1/15
 */
$serv = new swoole_server(‘127.0.0.1‘, 9501);

// 监听连接进入事件
$serv->on(‘connect‘, function ($serv, $fd) {
    echo "Client: Connect.\n";
});

// 监听数据接收事件
$serv->on(‘receive‘, function ($serv, $fd, $from_id, $data) {
    $serv->send($fd, "Server: " . $data);
});

// 监听连接关闭事件
$serv->on(‘close‘, function ($serv, $fd) {
    echo "Client: Close.\n";
});

// 启动服务器
$serv->start();

  1.执行程序,启动服务器

$ sudo /usr/local/php/bin/php server.php 
Client: Connect.

  2. 启动成功后,netstat 查看

$ sudo netstat -ntlp | grep php     
tcp        0      0 127.0.0.1:9501          0.0.0.0:*               LISTEN      21314/php  

  3. telnet连接服务器

$ telnet 127.0.0.1 9501
Trying 127.0.0.1...
Connected to 127.0.0.1.
Escape character is ^].
hello
Server: hello

  退出telnet:shift+],quit

  4. 结束工作进程:kill 主进程ID

$ kill 21314

 

 

参考:https://wiki.swoole.com/wiki/

swoole 创建tcp服务器

标签:escape   character   启动服务   shift   trying   进程id   tst   receive   star   

原文地址:https://www.cnblogs.com/tianxintian22/p/10270581.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!