The command is given more parameters than it expects.
For example, the Inc command accepts either one or two parameters and supplying three would raise an error.
Inc
Possible solutions: check the related documentation and provide fewer parameters:
Sqr($var, 1) // error Sqr($var) // OK
Last updated 5 years ago