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:
Переводит строку в нижний регистр. Является эквивалентом функции PHP strtolower().
Example 5.12. lower
<?php $smarty->assign('articleTitle', 'Two Convicts Evade Noose, Jury Hung.'); ?>
Шаблон:
{$articleTitle} {$articleTitle|lower}
Результат обработки:
Two Convicts Evade Noose, Jury Hung. two convicts evade noose, jury hung.
См. также upper и capitalize.