Subversion Repositories eFlore/Projets.eflore-projets

Rev

Rev 939 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 939 Rev 955
Line 99... Line 99...
99
			$e = 'renseignez une valeur pour masque.nn';
99
			$e = 'renseignez une valeur pour masque.nn';
100
			$this->renvoyerErreur(RestServeur::HTTP_CODE_MAUVAISE_REQUETE,$e);
100
			$this->renvoyerErreur(RestServeur::HTTP_CODE_MAUVAISE_REQUETE,$e);
101
		}
101
		}
102
		$arr = array_filter(array_map('intval', explode(',', $valeur)));
102
		$arr = array_filter(array_map('intval', explode(',', $valeur)));
103
		if(!$arr) $this->renvoyerErreur(RestServeur::HTTP_CODE_MAUVAISE_REQUETE, "valeur incorrecte pour masque.".$type_masque);
103
		if(!$arr) $this->renvoyerErreur(RestServeur::HTTP_CODE_MAUVAISE_REQUETE, "valeur incorrecte pour masque.".$type_masque);
104
		$this->requete_condition[] = sprintf(" flore_bdtfx_%s IN (%s)", $type_masque, implode(',', $arr));
104
		$this->requete_condition[] = sprintf(" flore_bdtfx_%s IN (%s)", $type_masque, implode(',', array_unique($arr)));
105
	}
105
	}