ilya/dynamic
Composer 安装命令:
composer require ilya/dynamic
包简介
Syntactic sugar for everyone.
README 文档
README
Syntactic sugar for everyone.
Dynamic helps you handle calls to non-existent methods.
Example
<?php require __DIR__.'/../vendor/autoload.php'; use Dynamic\DynamicTrait; class Example { use DynamicTrait; public function __construct() { $this->getDynamicInstance()->redirect('/^say(\w+)To$/', 'say'); } public function say($what, $to) { echo ucfirst("$what, $to!"), PHP_EOL; } } $example = new Example; echo $example->sayHelloTo('Jack'), $example->sayByeTo('John');
Can you guess what the output will be? Check it out yourself!
git clone https://github.com/ilya-dev/dynamic.git
cd dynamic
php examples/first.php
Documentation
Don't forget to add Dynamic\DynamicTrait trait to your class.
void redirect(string $pattern, string $method)mixed handle(mixed $instance, string $method, array $arguments = [])
Installation
php composer.phar require "ilya/dynamic:~1"
License
Dynamic is licensed under the MIT license.
统计信息
- 总下载量: 16
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2014-05-10