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

link|improve this question

feedback

3 Answers

up vote 4 down vote accepted

You could do that : ${(isset($x)?$y_class:$z_class)} = 'new value';

Mandatory link to the php documentation about variable variables.

link|improve this answer
exactly what i was thinking .. +1 for being faster than me – experimentX Apr 15 '11 at 12:47
feedback

Well, if $y_class and $z_class are hard-coded, you can do something like this, but this just makes your code less readable:

$var = isset($x) ? "y_class" : "z_class";
$$var = 'new value';

And of course this is still an assignment from right to left; as far as I know, there is no such syntax in the language which would allow assignment from left to right.

link|improve this answer
thats fine but if $y_class and $z_class are not hard-coded then – diEcho Apr 15 '11 at 12:38
Well, they do not necessarily have to be hard-coded, you can just as well "calculate" the variable names somehow, but you have to be extra careful not to allow the user to manipulate variables you don't want to. For instance, if the name of the variable comes from a GET parameter and you do not validate it, you practically allow the user to overwrite any of your variables. – Tamás Apr 15 '11 at 12:40
2  
I've given this +1 because it's the closest you'll get to what you're trying to do, but to be honest, I'd just stick with the if/else code you have, because that double-dollar syntax is nasty; it's almost bad as eval() in the list of things I don't ever want to see in a PHP program. – Spudley Apr 15 '11 at 12:40
@Spudley: totally agree. – Tamás Apr 15 '11 at 12:41
feedback

i think not, assignment operator assigns right value to left variable.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.