mirror of
https://github.com/smarty-php/smarty.git
synced 2025-11-29 05:49:23 +01:00
* Implemented support for substr, implode and json_encode as modifiers. Fixes #939 * Added split and join in favor of explode and implode modifiers. * Documented all available modifiers
12 lines
252 B
Markdown
12 lines
252 B
Markdown
# isset
|
|
|
|
Returns true if the variable(s) passed to it are different from null.
|
|
|
|
If multiple parameters are supplied then isset() will return true only if all of the parameters are
|
|
not null.
|
|
|
|
## Basic usage
|
|
```smarty
|
|
{if $myVar|isset}all set!{/if}
|
|
```
|