php: typo

This commit is contained in:
Jakukyo Friel 2014-01-17 14:47:54 +08:00
parent 11f860fce6
commit d2a34d3390

View File

@ -180,7 +180,7 @@ assert($c >= $d);
// 下面的比较只有在类型相同、值相同的情况下才为真
assert($c === $d);
assert($a !== $d);
assert(1 == '1');
assert(1 === '1');
assert(1 !== '1');
// 变量可以根据其使用来进行类型转换