2024-11-18 🔄 programmerhumor ┃ RE: luciferofastora
gotacha. i’ve only ever heard them called ternaries. maybe i’m old. maybe i’m too young. definitely one of the two
It specifically refers to this shorthand ?: that works like this:
[…]
$value = $thing_that_could_be_truthy ?: 'fallback value';
[…]
────
────