Uhhh, nope. That only works in your code if $b is initially 0. They're
shorthand for "do something and reassign".
$a = 100;
$a += 10; // $a = $a + 10
$a -= 10; // $a = $a - 10
$a /= 10; // etc...
$a += 10;
$a <<= 2;
$a .= ' is a weird number';
$mode = 0755;
$mode &= 01;
--Je
In PHP, what does the operator "-=" do?
$var -= 1 is the same as $var = $var - 1
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Hello Jeff,
Tuesday, December 9, 2003, 4:11:10 PM, you wrote:
JM> In PHP, what does the operator "-=" do? I can't find a ref to it's
JM> function in the online manual or any books I have.
Set's a negative value:
$a = 10;
$b -= $a;
or
$b -= 10;
In both cases $b will equal -10.
--
Best rega
3 matches
Mail list logo