23-02-2008, 05:35 PM
loka a écrit :Code PHP :<?php
$TMPL['unq_pv_max_daily'] = $TMPL['unq_pv_0_daily'] > $TMPL['unq_pv_max_daily'] ? $TMPL['unq_pv_0_daily'] : $TMPL['unq_pv_max_daily'];
C'est une opération trinaire (un if simplifié comme l'a dis Spoutnik).
Voila ce que ça veut dire : si l'opération booléenne $TMPL['unq_pv_0_daily'] > $TMPL['unq_pv_max_daily'] renvoie vrai, alors $TMPL['unq_pv_max_daily'] = $TMPL['unq_pv_0_daily'] sinon $TMPL['unq_pv_max_daily'] = $TMPL['unq_pv_max_daily'].
Après, sans savoir ce que veulent dire les variables, je ne peux pas t'expliquer plus ^^
La poo, je 'men sert pas pour l'instant, mais je trouve cette structure très interessante
Code PHP :
<?php
$a=1;
$b=2;
$a = $b > $a ? $b : $a;
//si 2>1, $a=1;
//sinon, $a=$a