您好,登錄后才能下訂單哦!
這篇文章主要介紹“Laravel中如何接入workerman”,在日常操作中,相信很多人在Laravel中如何接入workerman問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”Laravel中如何接入workerman”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
composer require workerman/gateway-worker -vvv
通過下列命令,在App\Console\Commands下創建命令行文件,并將下方代碼復制到文件中。
php artisan make:command WorkermanCommand
<?php
namespace App\Console\Commands;
use GatewayWorker\BusinessWorker;
use GatewayWorker\Gateway;
use GatewayWorker\Register;
use Illuminate\Console\Command;
use Workerman\Worker;
class WorkermanCommand extends Command
{
protected $signature = 'workman {action} {--d}'; //執行該命令的方式
protected $description = 'Start a Workerman server.';
public function handle()
{
global $argv;
$action = $this->argument('action');
$argv[0] = 'wk';
$argv[1] = $action;
$argv[2] = $this->option('d') ? '-d' : '';
// -d守護模式,不會因為關閉系統命令頁面而被殺掉進程。 沒有-d則關閉命令頁面直接退出進程
$this->start();
}
private function start()
{
$this->startGateWay();
$this->startBusinessWorker();
$this->startRegister();
Worker::runAll();
}
private function startBusinessWorker()
{
$worker = new BusinessWorker();
$worker->name = 'BusinessWorker';
$worker->count = 1;
$worker->registerAddress = '127.0.0.1:1236';
$worker->eventHandler = \App\Events::class; //用作監聽事件的文件
}
private function startGateWay()
{
//因為小程序等一些平臺,要求使用wss進行socket,所以,這里需要配置下wss
//此處的cert.pem和key.key是域名的證書文件
$content = array(
'ssl' => array(
'local_cert' => public_path('cert.pem'),
'local_pk' => public_path('key.key'),
'verify_peer' => false
)
);
$gateway = new Gateway("websocket://0.0.0.0:2346", $content);
//如果不需要wss,則不用加入content這個參數
$gateway->transport = 'ssl';//不需要wss,也不用加入這個參數。
$gateway->name = 'Gateway';
$gateway->count = 1;
$gateway->lanIp = '127.0.0.1';
$gateway->startPort = 2300;
$gateway->pingInterval = 30;
$gateway->pingNotResponseLimit = 0;
$data = array(
'type' => 'heart'
);
$gateway->pingData = json_encode($data, true);
$gateway->registerAddress = '127.0.0.1:1236';
}
private function startRegister()
{
new Register('text://0.0.0.0:1236');
}
}
創建一個app/Events.php文件來監聽處理Workman的各種事件
<?php
namespace App\Workerman;
class Events
{
public static function onWorkerStart($businessWorker)
{
}
public static function onConnect($client_id)
{
}
public static function onWebSocketConnect($client_id, $data)
{
}
public static function onMessage($client_id, $message)
{
}
public static function onClose($client_id)
{
}
}
在命令行里面執行,支持的命令有 start | stop | restart,后續加 -d 的意思是守護模式【daemon】
php artisan workman start -d
1、在LINUX環境中使用。
2、有可能會啟動失敗,此時,請檢查php中,是否禁用了pcntl開頭的相關方法。在 php配置文件中查找到disable_functions,將所有pcntl開頭的方法全部刪除。
到此,關于“Laravel中如何接入workerman”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。