🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
例如: ```php namespace app\index; use maiji\Action; class Index extends Action { public function __construct() { echo 'init<br/>'; } public function hello() { echo 'hello'; } public function data() { echo 'data'; } } ``` 如果访问 http://localhost/index.php/index/index/hello 会输出 ``` init hello ``` 如果访问 http://localhost/index.php/index/index/data 会输出 ``` init data ``` 调用父类构造方法 ```php public function __construct() { //调用父类构造方法 parent::__construct(); } ```