素の PHP をテンプレートとして使うフレームワークは今でも結構あるようです。 素の PHP をテンプレートに使う、というのがどういうことかというと、簡単な例ですが次のようなものです。 index.php <?php $name = filter_input(INPUT_GET, 'name'); include __DIR__ . '/index.html.php'; index.html.php <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> </head> <body> Hello <?= $name ?> </body> </html> php -S localhost:8888 でビルドインウェブサーバを起動して http://localhost:8888/?name=oreore にアクセ