. */ /* */ /*************************************************************************************/ require_once __DIR__ . "/../../fonctions/autoload.php"; class FiltreFaux extends FiltreBase { public function __construct() { parent::__construct("`\#FILTRE_faux\(([^\|]+)\|\|([^\)]+)\)`"); } public function calcule($match) { return $match[1] == '0' ? $match[2] : ''; } } ?>