Subversion Repositories Applications.referentiel

Rev

Rev 62 | Rev 67 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 62 Rev 65
Line 43... Line 43...
43
		for ($i = 0; $i < $nbre ; $i += $pas) {
43
		for ($i = 0; $i < $nbre ; $i += $pas) {
44
			$this->setLimitation($i, $pas);
44
			$this->setLimitation($i, $pas);
45
			$json = $this->envoyerRequeteConsultation($url);
45
			$json = $this->envoyerRequeteConsultation($url);
46
			$noms_partiel = json_decode($json, true);
46
			$noms_partiel = json_decode($json, true);
47
			Tableau::etendre($noms, $noms_partiel);
47
			Tableau::etendre($noms, $noms_partiel);
-
 
48
			if ($i > $pas) break;
48
		}
49
		}
49
		return $noms;
50
		return $noms;
50
	}
51
	}
Line 51... Line 52...
51
	
52