How to Execute Multiple Actions in a Ternary Block - PHP
I've written quite a few tutorials on Ternary operators.
My last post was about executing multiple actions in a Ternary block in JavaScript. Today, we will focus on PHP.
SYNTAX AND LOGIC
Consider the code below
$a = null; $b = null; $c = null;
(!...
octagon.hashnode.dev3 min read