larahook/async-helper
最新稳定版本:v1.0.5
Composer 安装命令:
composer require larahook/async-helper
包简介
Async call
README 文档
README
Example
// Base code echo 'a'; AsyncHelper::call(static function () { // Some async logic with separate database connection $response = Http::get('http://example.com/users'); $data = $response->json(); foreach ($data as $userItem) { SomeUserModel::updateOrCreate($userItem); } echo 'c'; }); echo 'b'; // Result: // 'a' // 'b' // 'c' // hidden echo
统计信息
- 总下载量: 3
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 2
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2026-01-14