this post was submitted on 14 Jul 2023
337 points (91.2% liked)

Programmer Humor

32051 readers
1447 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] cupcakezealot@lemmy.blahaj.zone 47 points 1 year ago (9 children)

The fault is the programmer for not using a switch statement.

[–] thatwill@lemmy.world 52 points 1 year ago (8 children)

"php doesn't stop me from coding like a moron, therefore php sucks"

[–] bastian_5@sh.itjust.works 2 points 1 year ago (4 children)

I say that php breaks math entirely, and is therefore bad. "" == null returns true null == [] returns true "" == [] returns false.

In more recent versions it gets worse, because it has 0 == "any text" return true, "any text" == true return true, and 1 == true return true So indirectly 1 = 0, and now math is more directly broken.

[–] thatwill@lemmy.world 2 points 1 year ago

I just tested these out out of curiosity.
0=="text" returns false in PHP 8.2 as I'd expect.

The others make sense in the way that php juggles between types. An empty variable can type-juggle to null, but an array can't be directly compared with a string.

(Although you wouldn't really want to compare an array with a string, PHP just treats an array as greater than other variables. So weirdly, ([] > "") == true.)

load more comments (3 replies)
load more comments (6 replies)
load more comments (6 replies)