Dịch vụ máy chủ GlobalData
(Yêu cầu phiên bản Workerman >= 3.3.0)
__construct
void \GlobalData\Server::__construct([string $listen_ip = '0.0.0.0', int $listen_port = 2207])
Khởi tạo một dịch vụ \GlobalData\Server
Tham số
listen_ip
Địa chỉ ip của máy chủ mà dịch vụ sẽ lắng nghe, không truyền thì mặc định là 0.0.0.0
listen_port
Cổng lắng nghe, không truyền thì mặc định là 2207
Ví dụ
use Workerman\Worker;
require_once __DIR__ . '/vendor/autoload.php';
// Lắng nghe cổng
$worker = new GlobalData\Server('127.0.0.1', 2207);
Worker::runAll();