App\Controllers\Admin\DeveloperController::phpinfo PHP Method

phpinfo() public method

public phpinfo ( $req, $res )
    public function phpinfo($req, $res)
    {
        $this->resourse = false;
        $this->initRoute($req, $res);
        $this->data['h1'] = 'PHP info';
        ob_start();
        phpinfo();
        $this->data['content'] = ob_get_contents();
        ob_get_clean();
        $this->data['content'] = substr($this->data['content'], strrpos($this->data['content'], "<body>"));
        $this->data['content'] = substr($this->data['content'], 0, strrpos($this->data['content'], "</body>"));
        $this->view->render($res, 'admin\\phpinfo.twig', $this->data);
    }