Heim > Fragen und Antworten > Hauptteil
<?php
$x = 5;
$y = 6;
$foo = $x++ + $x--;
$bar = ++$y + ++$x;
$cup = $ x-- + $y--;
$paper = ++$x + $x++;
$water = $y-- + $x--;
echo $water + $paper;
?>
Bitte erläutern Sie es, danke. Ich habe 22
berechnetkanglecheng2019-07-12 16:09:46
这是我做的学习笔记,可以相互学习下
PHP中 $x++ 和 ++$x 的区别http://www.php.cn/blog/detail/13861.html