mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-11-26 09:21:00 +03:00
php: typo
This commit is contained in:
parent
11f860fce6
commit
ae892c802c
@ -212,7 +212,7 @@ assert($c >= $d);
|
|||||||
// The following will only be true if the values match and are the same type.
|
// The following will only be true if the values match and are the same type.
|
||||||
assert($c === $d);
|
assert($c === $d);
|
||||||
assert($a !== $d);
|
assert($a !== $d);
|
||||||
assert(1 == '1');
|
assert(1 === '1');
|
||||||
assert(1 !== '1');
|
assert(1 !== '1');
|
||||||
|
|
||||||
// Variables can be converted between types, depending on their usage.
|
// Variables can be converted between types, depending on their usage.
|
||||||
|
Loading…
Reference in New Issue
Block a user