fenom/docs/ru/mods/join.md

16 lines
438 B
Markdown
Raw Permalink Normal View History

2014-08-06 21:36:11 +04:00
Модификатор split
2014-08-01 12:12:19 +04:00
==============
2014-08-06 21:36:11 +04:00
Объединяет элементы массива в строку.
2014-08-01 12:12:19 +04:00
```
2014-08-06 21:36:11 +04:00
{$array|join:$delimiter = ","}
2014-08-01 12:12:19 +04:00
```
2014-08-06 21:36:11 +04:00
Объединяет элементы массива с помощью строки `$delimiter`.
2014-08-01 12:12:19 +04:00
```smarty
{var $fruits1 = ["banana", "apple", "pear"]}
2014-08-06 21:36:11 +04:00
{$fruits1|join} выведет banana, apple, pear
{$fruits1|join:" is not "} выведет banana is not apple is not pear
2014-08-01 12:12:19 +04:00
```