Swoole\Coroutine::getElapsed(int $cid = 0)

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


Latest version: pecl install openswoole-22.1.2

Declaration

<?php Swoole\Coroutine::getElapsed(int $cid = 0)

Parameters

cid

Coroutine ID. By default, use the ID of current coroutine.

Return

elapsed

The elasped time of a coroutine

Description

Get the elapsed execution duration of a coroutine by coroutine ID.

Example

<?php
Co\run(function () {
      co::sleep(2);
    echo Swoole\Coroutine::getElapsed();
});
Last updated on August 31, 2022