Php Smarty template ternary operator to reduce code in html tags

dgloriaweb

dgloriaweb

Posted on November 24, 2021

Php Smarty template ternary operator to reduce code in html tags

Hi Sweet People!
I've googled this, and found a solution with no explanation so I tested and came up with this example.

<head>
{$bloke = true}
{$sex = ($bloke) ? 'Male' : 'Female'}
</head>
Enter fullscreen mode Exit fullscreen mode

After entering {debug} mode, I can see this returning 'Male' all right.
Image description

💖 💪 🙅 🚩
dgloriaweb
dgloriaweb

Posted on November 24, 2021

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related