1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-07-31 03:50:32 +02:00

php: typo

This commit is contained in:
Jakukyo Friel
2014-01-17 14:38:24 +08:00
parent 11f860fce6
commit ae892c802c

View File

@@ -212,7 +212,7 @@ assert($c >= $d);
// The following will only be true if the values match and are the same type.
assert($c === $d);
assert($a !== $d);
assert(1 == '1');
assert(1 === '1');
assert(1 !== '1');
// Variables can be converted between types, depending on their usage.