+ 5
Why --$y has no effect on char or string?
$y = 'a'; --$y; echo $y; //output: a
2 Respuestas
+ 2
Character variables in php can only be incremented and not decremented.
http://php.net/manual/en/language.operators.increment.php
0
only +++ cannot --character in php