. */ /* */ /*************************************************************************************/ require_once __DIR__ . "/../../fonctions/autoload.php"; // Définit les données resultant d'une iteration de boucle class IterationBoucle{ public $remplacement; public $prefixe; public $varval; public function __construct(){ $this->remplacement = false; $this->prefixe = false; $this->varval = array(); } public function ajoutVarVal($var, $value){ if (trim($var) != '') $this->varval['#'.$var] = $value; } public function estValuee(){ return count($this->varval) > 0 || $this->remplacement !== false || $this->prefixe !== false; } } ?>