php的Invoke 用法

PHP 的 __invoke 是一个很有用的特性,可以保持类的单一职责class Invokable{ public function __invoke() { echo '已被 invoke'; } } //使用 $invokable =...
阅读全文