What are some recommended template parsers for PHP that are fast, simple, and small?

When working with templates in PHP, it's important to choose a parser that is fast, simple, and small to ensure optimal performance. Some recommended template parsers for PHP that fit these criteria include Twig, Plates, and Blade. These parsers offer a clean syntax, powerful features, and good performance, making them popular choices among PHP developers.

// Example using Twig template parser
require_once 'vendor/autoload.php';

$loader = new \Twig\Loader\FilesystemLoader('templates');
$twig = new \Twig\Environment($loader);

echo $twig->render('index.html', ['name' => 'John Doe']);