Smarty

Smarty Beschreibung des Smarty-logo.png-Bildes.

Information
Entwickelt von Monte Ohrt, Messju Mohr
Erste Version 2002
Letzte Version 3.1.39 (17. Februar 2021)
Anzahlung github.com/smarty-php/smarty
Geschrieben in PHP
Art Template Engine
Lizenz GNU LGPL
Webseite www.smarty.net

Smarty ist eine Template- Engine für die PHP- Sprache . Es ist schnell und ermöglicht die Verwaltung von Caches.

Es erleichtert die Trennung zwischen Geschäftslogik und Präsentation (aus Sicht des OSI-Modells ).

Smarty ist die Vorlagen-Engine für einige Webanwendungen wie Prestashop .

Beispiel

<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>{$title_text|escape}</title> </head> <body> {* This is a little comment that won't be visible in the HTML source *} {$body_html} </body> <!-- this is a little comment that will be seen in the HTML source --> </html>

Siehe auch

Externe Links