实例 PHP -= 运算符

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

输出结果





9