mirror of
https://github.com/smarty-php/smarty.git
synced 2025-11-18 00:19:41 +01:00
325 B
325 B
in_array
test if value is contained in an array
Basic usage
{if in_array('value2', $myarray)} value2 is in myarray{/if}
Can be replaced by operator is in
{if 'value2' is in $myarray}value2 is in myarray{/if}
See Also operators