Join 4,000+ others and never miss out on new tips, tutorials, and more.
Latest version:
pecl install openswoole-22.1.2 | composer require openswoole/core:22.1.5
<?php OpenSwoole\Server->on('Connect', callable $callback)
The event callback name.
Callable event function.
If success, it returns true
, otherwise it returns false
.
Execute the callback function when the Server is accepting a new connection allowing you to perform actions when a new connection appears.
This callback will receive the OpenSwoole server object, the $fd
(file descriptor) number of the client connection and the reactor thread process ID where the connection is located.
Both the Connect
and Close
events are executed within the same process space, the same worker thread. For UDP servers only, there is no on Connect
event, just Receive
.
When using dispatch modes 1 or 3, Connect
, Receive
and Close
events may be delivered to different processes, so connection related PHP objects may not be accessible in some cases. And the three mentioned events may be executed concurrently in dispatch modes 1 or 3, which may cause unexpected results or exceptions.
<?php
$server = new OpenSwoole\Server("127.0.0.1", 9501);
$server->on('Start', function ($server)
{
echo "Server has started.\n";
});
$server->on('Shutdown', function ($server)
{
echo "Server is shutting down.\n";
});
// The onConnect event receives the server object, client fd and reactor process ID
$server->on('Connect', function (OpenSwoole\Server $server, int $fd, int $reactorId)
{
echo "New connection established: #{$fd}.\n";
});
$server->on('Receive', function ($server, $fd, $fromId, $data)
{
$server->send($fd, "Echo to #{$fd}: \n" . $data);
$server->close($fd);
});
$server->on('Close', function ($server, $fd)
{
echo "Connection closed: #{$fd}.\n";
});
$server->start();