Download the PHP package tinymeng/worker-socket without Composer
On this page you can find all versions of the php package tinymeng/worker-socket. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download tinymeng/worker-socket
More information about tinymeng/worker-socket
Files in tinymeng/worker-socket
Download tinymeng/worker-socket
More information about tinymeng/worker-socket
Files in tinymeng/worker-socket
Vendor tinymeng
Package worker-socket
Short Description Easy to use workerman's websocket
License Apache-2.0
Package worker-socket
Short Description Easy to use workerman's websocket
License Apache-2.0
Please rate this library. Is it a good library?
Informations about the package worker-socket
Workerman websocket 扩展
1.安装
composer require tinymeng/worker-socket:~1.0.1 -vvv
目录结构
worker-socket 已集成thinkphp、larverl、yii框架使用
2.业务逻辑(Events类)
在项目 /application/index/controller
下创建文件Events类 Events.php
首先创建控制器类并继承 tinymeng\worker\Server,然后设置属性和添加回调方法
2.1 ThinkPhp框架示例如下:
支持workerman所有的回调方法定义(回调方法必须是public static类型)
3.启动项目
在应用根目录增加入口文件 socket.php
3.1.1 ThinkPhp框架示例如下:
#!/usr/bin/env php
<?php
/**
* 用于检测业务代码死循环或者长时间阻塞等问题
* 如果发现业务卡死,可以将下面declare打开(去掉//注释),并执行php socket.php reload
* 然后观察一段时间workerman.log看是否有process_timeout异常
*/
//declare(ticks=1);
define('APP_PATH', __DIR__ . '/application/');
/** Events类,根据自己的模块和控制器填写 */
define('BIND_MODULE','index/Events');
// 加载框架引导文件
require __DIR__ . '/thinkphp/start.php';
3.1.2 Laravel框架示例如下:
#!/usr/bin/env php
<?php
/**
* 用于检测业务代码死循环或者长时间阻塞等问题
* 如果发现业务卡死,可以将下面declare打开(去掉//注释),并执行php socket.php reload
* 然后观察一段时间workerman.log看是否有process_timeout异常
*/
//declare(ticks=1);
define('LARAVEL_START', microtime(true));
require __DIR__.'/vendor/autoload.php';
$app = require_once __DIR__.'/bootstrap/app.php';
/** Events类,根据自己的命名规范填写 */
$kernel = $app->make(App\Http\Controllers\EventsController::class);
3.1.3 Yii框架示例如下:
#!/usr/bin/env php
<?php
/**
* worker-socket command socket file.
*/
defined('YII_DEBUG') or define('YII_DEBUG', true);
defined('YII_ENV') or define('YII_ENV', 'dev');
require __DIR__ . '/vendor/autoload.php';
require __DIR__ . '/vendor/yiisoft/yii2/Yii.php';
$config = [
/** Events类,根据自己的命名规范填写 */
'class' => 'backend\controllers\EventController',
];
$modifyPassword = Yii::createObject($config);
3.2 在命令行启动服务端 php socket.php start
linux下面可以支持下面指令
需要后台运行的话
4.测试
在浏览器中进行客户端测试
输入socket地址 ws://IP:1314 测试socket服务是否正常
网站事例: 打开 (需要登录哦!)
大家如果有问题要交流,就发在这里吧: worke-socket 交流 或发邮件 [email protected]
All versions of worker-socket with dependencies
PHP Build Version
Package Version
The package tinymeng/worker-socket contains the following files
Loading the files please wait ....