Blogger Information
Blog 2
fans 0
comment 0
visits 1261
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
赋值运算
放游科技的博客
Original
518 people have browsed it

符号       举例                等价式

+=       $x+ =$y        $x =$x+$y

-=        $x - =$y        $x =$x -$y

*=        $x * =$y        $x  =$x * $y

/=        $x / =$y         $x  =$x / $y

% =     $x% =$y         $x = $x % $y

.=         $x .=$y           $x =$x .$y

举例子说明

<?php
$x = 5;
$y = 8;
$x += $y;
echo $x;
?>

$x 输出 13,

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post