huid / container
php code template
v1.0
2020-12-14 12:54 UTC
Requires
- php: >=7.1
- tightenco/collect: >5.0
Requires (Dev)
- phpunit/phpunit: ^8.5
- symfony/var-dumper: ^3.3
This package is auto-updated.
Last update: 2025-03-14 22:52:04 UTC
README
可扩展的运行 php
代码容器
Feature
- 直接
bind
定回调
use Huid\Application; $application = new Application $application->bind('hello', function () { return 'hello world'; }); echo $application->hello();
- 直接注入
plugin
# 定义如下 `plugin` 文件 class Huid\Application\plugins; class HelloWorld implements PluginContract { public static function install(Application $application, ...$opt) { $application->bind('hello', function () { return 'hello world plugin'; }); } } # 运行 use Huid\Application; use Huid\Application\Plugins\HelloWorldPlugin; $application = new Application $application->use(HelloWorldPlugin::class); echo $application->hello();