游伴php / monitor
游伴应用监控
V1.1.1
2017-07-05 06:45 UTC
Requires
- php: >=5.5.0
- ext-openssl: *
- pimple/pimple: ~3.0
This package is not auto-updated.
Last update: 2024-09-22 15:01:12 UTC
README
简单使用方法
<?php
/**
* User: szliugx@gmail.com
* Date: 2017/7/4
* Time: 18:29
*/
include "./vendor/autoload.php";
use YouBanMonitor\Foundation\Application;
$options = [
'address' => '127.0.0.1',
'port' => '8089',
'content' => 'test:content',
];
$app = new Application($options);
$app->send->udp();
待续......