kitchenu/ssel

PHP 服务器端发送事件库

0.1.0 2018-04-11 17:17 UTC

This package is not auto-updated.

Last update: 2024-09-15 22:44:20 UTC


README

Build Status License

PHP 服务器端发送事件库。

安装

$ composer require kitchenu/ssel

使用

<?php

require 'vendor/autoload.php';

$app = new Ssel\App();

$app->addTimerEvent('test', function () {
    return date('Y-m-d h:i:s');
});

$app->run();