Swoole Server getReceivedTime()

4.x is outdated, please check the latest version 22.x


Latest version: pecl install openswoole-22.1.2

Declaration

<?php Swoole\Server->getReceivedTime()

Parameters

none

Return

last_received_usec

The last time the server received data.

Description

Get the last timestamp that the server received data.

Example

<?php
$server->on('receive', function ($server, $fd, $reactorId, $data)
{
    usleep(rand(100000, 2000000));
    var_dump(round($server->getReceivedTime(), 10));
});
Last updated on August 31, 2022