keven/timeout

在时间限制内执行代码。

1.0.0 2019-08-16 22:17 UTC

This package is auto-updated.

Last update: 2024-09-06 04:47:13 UTC


README

安装

$ composer require keven/timeout

用法

<?php

use Keven\Timeout\Invoker;

$timeout = new Invoker;

// Execute code in under 2s, or throws an exception
$timeout(function() { sleep(1); return 'ok'; }, 2);