如何制作php框架? [已关闭]

问题描述 投票:0回答:2

我很失望地提出问题。他们没有鼓励我。

php class input interface
2个回答
1
投票

它并不像你想象的那样工作。 Laravel 使用依赖注入。 您可以定义一个 Request 类,并在其构造函数中将 POST 数据映射到属性。 像这样的:

class Request {
    public $get;
    public $post;

    public function __construct() {
        $this->get = $_GET;
        $this->post = $_POST;
    }
}

然后您可以通过以下方式访问 POST 数据:

$request->post['anotherinputname'];

-1
投票

假设您的控制器中有此方法:

public function create(Request $request) {

您应该通过执行以下操作来获取变量:

$field = $request->get('fieldName');
dump($field);
© www.soinside.com 2019 - 2024. All rights reserved.