乐趣区

关于php:你的PHP代码好骚哦

$a = 3;
if ($a = 5) {$a++;}
var_dump($a); 

改良数字放后面 5 == $a
如果少写 = 间接报错

$a = 3;
if (5 == $a) {$a++;}
var_dump($a); 
退出移动版