$x = 5;
$y = 6;
$foo = $x++ + $x--;
$bar = ++$y + ++$x;
$cup = $x-- + $y--;
$paper = ++$x + $x++;
$water = $y-- + $x--;
echo $y--.'
';//等于5
echo $x--.'
';//等于6
//这里怎么理解。。。
echo $water.'
';//等于13
echo $paper.'
';//等于12
echo $water + $paper;//等于25
?>
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
怎么理解 谢谢!-PHP中文网问答-怎么理解 谢谢!-PHP中文网问答
围观一下哦,学习一下。
不知道