Subversion Repositories eFlore/Projets.eflore-projets

Compare Revisions

Ignore whitespace Rev 66 → Rev 67

/trunk/scripts/bibliotheque/EfloreScript.php
66,6 → 66,14
}
}
 
protected function recupererContenu($chemin) {
$contenu = file_get_contents($chemin);
if ($contenu === false){
throw new Exception("Impossible d'ouvrir le fichier SQL : $chemin");
}
return $contenu;
}
 
protected function stopperLaBoucle($limite) {
$stop = false;
static $ligneActuelle = 1;