145
Elvis (feddit.it)
you are viewing a single comment's thread
view the rest of the comments
[-] QuazarOmega@lemy.lol 8 points 6 days 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

this post was submitted on 17 Nov 2024
145 points (100.0% liked)

Programmer Humor

32560 readers
292 users here now

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

Rules:

founded 5 years ago
MODERATORS