Swoole\Request::initWithLamp PHP Method

initWithLamp() public method

LAMP环境初始化
public initWithLamp ( )
    function initWithLamp()
    {
        $this->get = $_GET;
        $this->post = $_POST;
        $this->cookie = $_COOKIE;
        $this->server = $_SERVER;
        $this->request = $_REQUEST;
    }