首页课程PHP趣味課堂PHP賦值運算

PHP賦值運算

目录列表

下面代码的执行结果是多少?

<?php $a = 17;$b = 20;$a .= $b;$a+=$b;echo $a; ?> //output

1/1