$a=26 $b=4 $a/=$b=??  
<?php 
$a = 26;
$b = 4;
$a/=$b;
echo $a;
?>等于6.5呢 还是6呢 
为什么????