PHP Manual
/
Elaborazione di catene

Come rendere un modello Latte in una stringa

18. 12. 2022

Il sistema di template Latte è adatto a rendere quasi tutti i tipi di template sul web. Per il rendering dei modelli di frontend, ad esempio, React o Vue.js sono stati la scelta migliore negli ultimi anni, ma per il rendering dei modelli di e-mail sul backend, Latte vince ancora.

Quindi, come possiamo assicurarci di rendere un modello HTML specifico in una stringa che possiamo inviare via e-mail?

Facile:

$latte = new Engine();
$latte->setLoader(new StringLoader());
$template = '<p>Il mio nome è: {$firstName}:{$lastName}!</p>';
$html = $latte->renderToString($template, [
'nomeNome' => 'Gennaio',
'cognome' => 'Test',
]);
echo $html;

Jan Barášek   Více o autorovi

Autor článku pracuje jako seniorní vývojář a software architekt v Praze. Navrhuje a spravuje velké webové aplikace, které znáte a používáte. Od roku 2009 nabral bohaté zkušenosti, které tímto webem předává dál.

Rád vám pomůžu:

Související články

1.
8.
Status:
All systems normal.
2024