C'est comme en C ou Java, c'est un opérateur ternaire qui remplace le if(){} else{}. Dans ton cas, ça veut dire :
Code :
- if($translate_to==$translate_from)
- {
- $translate_from = $Translate[$postrow[$i]['user_lang']];
- }
- else
- {
- $translate_from = $ $translate_from;
- }
|
Perso j'aime pas du tout ce truc surtout dans le cas que tu as puisque dans le cas du else ça fait rien
Vaut mieux écrire
Code :
- if($translate_to==$translate_from)
- $translate_from = $Translate[$postrow[$i]['user_lang']];
|
---------------
Everyone thinks of changing the world, but no one thinks of changing himself | It is the peculiar quality of a fool to perceive the faults of others and to forget his own | Early clumsiness is not a verdict, it’s an essential ingredient.