hushulin / maple
A trigger for maple system (php)
Installs: 13
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/hushulin/maple
Requires
- php: >=5.2.0
This package is auto-updated.
Last update: 2025-09-29 01:55:40 UTC
README
这是maple框架的触发器,目前只实现了write_to_worker,具体参看maple
安装
git clone git@github.com:hushulin/maple.git
快速开始
$client = new Phptrigger('127.0.0.1' , 28000);
if ($client->connect()) {
$client->write_to_worker(['uid' => 123 , 'ax' => 456] , 2);
$client->close();
}