Is there a better/shorter way in PHP of doing
$x = $x + 10;
i.e.
something like
$x .= 10; // (but this doesn't add together)
I am sure i've seen a shorter way than doing $x = $x + 10;
Have a look at: http://php.net/manual/language.operators.assignment.php (in the code examples and comments)
You can use:
$x += 10;
for example.
Not a PHP guy, but $x += 10;
maybe?
$x += 10;
However some people find this harder to read.
What you tried ($x.= 10
) works only for strings.
E.g.
$x = 'test';
$x.= 'ing...';
Like in many other languages:
$x += 10;
More information: Assignment Operators
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With