* @author Jean-Pascal MILCENT * @author Aurelien PERONNET * @license GPL v3 * @license CECILL v2 * @copyright 1999-2014 Tela Botanica */ class FichierUtil { public static function recupererContenu($chemin) { $contenu = file_get_contents($chemin); if ($contenu === false){ throw new Exception("Impossible d'ouvrir le fichier SQL : $chemin"); } return $contenu; } }