this post was submitted on 17 Nov 2024
132 points (94.6% liked)

Programmer Humor

32490 readers
556 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
[–] [email protected] 9 points 13 hours ago (2 children)

been programming since 2008. the fuck is an elvis operator?

[–] [email protected] 3 points 4 hours ago

Been programming since the 80s, ditto.

[–] [email protected] 4 points 12 hours ago (1 children)
[–] [email protected] 3 points 5 hours ago (1 children)

gotacha. i've only ever heard them called ternaries. maybe i'm old. maybe i'm too young. definitely one of the two

[–] [email protected] 5 points 5 hours ago

It specifically refers to this shorthand ?: that works like this:

$value = $thing_that_could_be_truthy ?: 'fallback value';

# same as

$value = $thing_that_could_be_truthy ? $thing_that_could_be_truthy : 'fallback value';

The condition is also the value if it is truthy