webman中创建udp服务

webman是workerman的web开发框架

可以很容易的开启udp服务

tcp建议使用gatewayworker

webman GatewayWorker插件

创建udp服务:

config/process.php中加入:

return [
    // File update detection and automatic reload
    'monitor' => [
...........
    ],  
    'udp' => [
        'handler' => process\Udp::class,
        'reloadable' => true,
        'listen' => 'udp://0.0.0.0:64001',
        'count' => 2,
    ]   
];

新建文件:process/Udp.php

<?php
                               
namespace process;
                               
use support\Log;               

class Udp                      
{ 
    public function onWorkerStart($worker)
    {
        Log::info(__METHOD__ . " worker:{$worker->id}");
    }

    public function onMessage($connection, $data)
    {
        Log::info(__METHOD__ . " msg:{$data}");
        $connection->send('shoudao');                                                                                                                                                                                                                                                
    }
}

执行:

php start.php start

结果(我这里安装了gatewayworker插件):

相关推荐

  1. webman插件创建

    2024-06-11 13:54:02       54 阅读
  2. netty udp创建服务端+客户端

    2024-06-11 13:54:02       25 阅读
  3. qt udp创建服务端链接

    2024-06-11 13:54:02       25 阅读
  4. UDP Ping程序实现--第1关:Ping服务创建UDP套接字

    2024-06-11 13:54:02       60 阅读
  5. UDP服务器和客户端的创建步骤

    2024-06-11 13:54:02       39 阅读
  6. UDP-创建群聊

    2024-06-11 13:54:02       34 阅读
  7. skynet 配置lua服务创建流程

    2024-06-11 13:54:02       42 阅读

最近更新

  1. docker php8.1+nginx base 镜像 dockerfile 配置

    2024-06-11 13:54:02       70 阅读
  2. Could not load dynamic library ‘cudart64_100.dll‘

    2024-06-11 13:54:02       74 阅读
  3. 在Django里面运行非项目文件

    2024-06-11 13:54:02       61 阅读
  4. Python语言-面向对象

    2024-06-11 13:54:02       71 阅读

热门阅读

  1. nltk下载报错

    2024-06-11 13:54:02       34 阅读
  2. 拼多多销量清零吗?销量排行榜哪里看?

    2024-06-11 13:54:02       28 阅读
  3. 【AI赋能消费电子——COMPUTEX 2024专题】

    2024-06-11 13:54:02       44 阅读
  4. Qt_显示VTK和PCL

    2024-06-11 13:54:02       33 阅读
  5. nodejs

    nodejs

    2024-06-11 13:54:02      32 阅读
  6. linux系统的使用

    2024-06-11 13:54:02       31 阅读
  7. 选题排序(十大排序算法)

    2024-06-11 13:54:02       31 阅读