mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2025-08-01 20:40:42 +02:00
php: typo
This commit is contained in:
@@ -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.
|
||||||
|
Reference in New Issue
Block a user