PHP-View PHP 组件可帮助你呈现 PHP 模板。
composer require slim/php-view
你可以像这样在 Slim 中使用它
<?php
use Slim\Factory\AppFactory;
use Slim\Views\PhpRenderer;
require __DIR__ . '/../vendor/autoload.php';
// Create App
$app = AppFactory::create();
$app->get('/hello', function ($request, $response) {
$renderer = new PhpRenderer(__DIR__ . '/../templates');
$viewData = [
'name' => 'John',
];
return $renderer->render($response, 'hello.php', $viewData);
})->setName('profile');
$app->run();
在项目根目录中创建目录: templates/
在 templates 目录中创建模板文件: templates/hello.php
模板内容
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Slim Example</title>
</head>
<body>
<h1>Hello, <?= htmlspecialchars($name, ENT_QUOTES | ENT_SUBSTITUTE, 'UTF-8') ?></h1>
</body>
</html>
输出
Hello John
安全说明:重要的是要确保动态输出被正确地 转义。