blob: 38d4c426f36a06920521b862ab25df45dd3d211a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# in_array
test if value is contained in an array
## Basic usage
```smarty
{if in_array('value2', $myarray)} value2 is in myarray{/if}
```
Can be replaced by operator *is in*
```smarty
{if 'value2' is in $myarray}value2 is in myarray{/if}
```
See Also [operators](../language-basic-syntax/language-syntax-operators.md)
|