What is Smarty?
Why use it?
Use Cases and Work Flow
Syntax Comparison
Template Inheritance
Best Practices
Crash Course
You may use the Smarty logo according to the trademark notice.
For sponsorship, advertising, news or other inquiries, contact us at:
Dieser Wert wird der aktuellen Variable hinzugefügt.
Parameter Position | Typ | Benötigt | Standard | Beschreibung |
---|---|---|---|---|
1 | string | Nein | leer/empty | Wert der an die Variable angefügt werden soll. |
Example 5.3. cat
<?php $smarty->assign('articleTitle', "Psychics predict world didn't end"); ?>
Bei folgendem index.tpl:
{$articleTitle|cat:" yesterday."}
Ausgabe:
Psychics predict world didn't end yesterday.