first of all sorry for asking such a illogical question , it may be worst question of SO but please gives your suggestion
i have below condition
if (isset($x)){
$y_class = 'new value';
}else {
$z_class = 'new value';
}
can we change above if condition into ternary? means
Is there any way where we assign LEFT to RIGHT ?
Imaginary Code
'new value' = (isset($x)) ? $y_class : $z_class;
Thanks for helping
_K