Subversion Repositories Applications.referentiel

Rev

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

Rev 58 Rev 62
Line 42... Line 42...
42
		$pas = 10000;
42
		$pas = 10000;
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
			$noms = array_merge($noms, $noms_partiel);
47
			Tableau::etendre($noms, $noms_partiel);
48
		}
48
		}
49
		return $noms;
49
		return $noms;
50
	}
50
	}
Line 51... Line 51...
51
	
51