伙计们请帮我理解这些代码
在图 1 中,路由器使用 info 方法调用
正如您在 AccountController 中看到的那样,已经存在 info() 那么为什么 __call() 这个神奇的函数正在调用
这些参数是什么 $this->request ,$this->response
我们可以保存所有数据,例如
$request = $args[0]; $response = $args[1]; $attributes = $args[2];
为什么要使用 $this-> syntex 这条线的含义是什么 $this->$name();
路由器.php
<?php
$app->get('/account', '\App\Controller\AccountController:info');
?>
AccountController.php
<?php
/**
* AccountController
* @package Controllers
*/
namespace App\Controller;
final class AccountController extends \App\Core\Controller
{
protected function info()
{
echo $this->client_id;
}
}
控制器.php
<?php
namespace App\Core;
class Controller
{
public function __call($name,$args) { //line 25
//echo "Call method : ".$name;
$this->request = $args[0];
$this->response = $args[1];
$this->attributes = $args[2];
//print_r($this->attributes);
$this->client_id = $this->request->getAttribute("client_id");
$this->$name();
}
}
?>