someone have use this can please elaborate its behavior. $a = "123"; $p+= $a; im little bit confused in using the "+="
$p += $a; is equivalent to $p = $p + $a; but to use that you need to define $p before. $a = 123; $p = 25; $p += $a;
This type of "behavior" like you said, is used to make the math faster, but like ademmeda said, you must define $p.
yes in mathematical operation... hmmm maybe im thinking wrong.. whats is the procedure used to convert a value to a variable name example $a = "value"; then dynamically create new variable name "value"