初始化

This commit is contained in:
2026-01-06 13:37:07 +08:00
parent c3435595fe
commit 00d7a381aa
70 changed files with 3913 additions and 1 deletions

View File

@@ -0,0 +1,81 @@
<?php
namespace think\worker\websocket\socketio;
class EnginePacket
{
/**
* Engine.io packet type `open`.
*/
const OPEN = 0;
/**
* Engine.io packet type `close`.
*/
const CLOSE = 1;
/**
* Engine.io packet type `ping`.
*/
const PING = 2;
/**
* Engine.io packet type `pong`.
*/
const PONG = 3;
/**
* Engine.io packet type `message`.
*/
const MESSAGE = 4;
/**
* Engine.io packet type 'upgrade'
*/
const UPGRADE = 5;
/**
* Engine.io packet type `noop`.
*/
const NOOP = 6;
public $type;
public $data = '';
public function __construct($type, $data = '')
{
$this->type = $type;
$this->data = $data;
}
public static function open($payload)
{
return new self(self::OPEN, $payload);
}
public static function pong($payload = '')
{
return new self(self::PONG, $payload);
}
public static function ping()
{
return new self(self::PING);
}
public static function message($payload)
{
return new self(self::MESSAGE, $payload);
}
public static function fromString(string $packet)
{
return new self(substr($packet, 0, 1), substr($packet, 1) ?: '');
}
public function toString()
{
return $this->type . $this->data;
}
}