1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-13 18:24:39 +02:00

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');
// 变量可以根据其使用来进行类型转换