OpenSwoole Server getReceivedTime()

Latest version: pecl install openswoole-22.1.2 | composer require openswoole/core:22.1.5

Declaration

<?php OpenSwoole\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 September 1, 2022