<?php
$x = 5;
$y = 6;
$foo = $x $x--;
$bar = $y $x;
$cup = $x-- $y--;
$paper = $x $x ;
$water = $y-- $x--;
# echo $water $paper;
?>
解釋一下,謝謝。我算的道22
#kanglecheng2019-07-12 16:09:46
這是我做的學習筆記,可以互相學習下
PHP中$x++ 和++$x 的差別http://www.php.cn/blog/detail/13861.html