Voting

: zero plus seven?
(Example: nine)

The Note You're Voting On

Tahazzot
4 years ago
Very careful when reading PHP documentation, Here's a lot of miss information.

According to documentation, They say's (int) 0 == (string) "a" is true. But it is not in PHP 8.

var_dump(0 == "a"); // 0 == 0 -> true

Now In PHP 8 it's False.

<< Back to user notes page

To Top