Actions
$eval » History » Revision 1
Revision 1/2
| Next »
Per Amundsen, 08/12/2015 08:41 AM
Added in 1.9.0
$eval(text,[N])
Evaluates the contents of text N times.
Same as $
Parameters
text - The text to evaluate.
[N] - If N is not specified, the default is N = 1. If N is zero, text is not evaluated.. (optional)
Example
; Evaluate 0 times. //echo -ag $eval($ $+ me, 0) ; Evaluate 1 time. //echo -ag $eval($ $+ me) ; Evaluate 2 times. //echo -ag $eval($ $+ me, 2)
Updated by Per Amundsen over 9 years ago · 1 revisions