Renderer.php
960 字节
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?php
namespace Facade\Ignition\ErrorPage;
use Exception;
use Facade\Ignition\Exceptions\ViewException;
class Renderer
{
    /** @var string */
    protected $viewPath;
    public function __construct(string $viewPath)
    {
        $this->viewPath = $this->formatPath($viewPath);
    }
    public function render(string $viewName, array $_data): string
    {
        ob_start();
        $viewFile = "{$this->viewPath}/{$viewName}.php";
        try {
            extract($_data, EXTR_OVERWRITE);
            include $viewFile;
        } catch (Exception $exception) {
            $viewException = new ViewException($exception->getMessage());
            $viewException->setView($viewFile);
            $viewException->setViewData($_data);
            throw $viewException;
        }
        return ob_get_clean();
    }
    protected function formatPath(string $path): string
    {
        return preg_replace('/(?:\/)+$/u', '', $path).'/';
    }
}