实例 PHP 后递减 运算符

x
 
<!DOCTYPE html>
<html>
<body>
<?php
$x = 17;  
echo $x--;
?>  
</body>
</html>
                    

输出结果





17