Subversion Repositories eFlore/Applications.cel

Compare Revisions

Ignore whitespace Rev 2669 → Rev 2670

/branches/v2.20-pistolet-arroseur/scripts/bibliotheque/FichierUtil.php
New file
0,0 → 1,24
<?php
// declare(encoding='UTF-8');
/**
* Contient des méthodes utiles pour manipuler les fichiers.
*
* @category CEL
* @package Scripts
* @subpackage Bibliotheque
* @author Mathias CHOUET <mathias@tela-botanica.org>
* @author Jean-Pascal MILCENT <jpm@tela-botanica.org>
* @author Aurelien PERONNET <aurelien@tela-botanica.org>
* @license GPL v3 <http://www.gnu.org/licenses/gpl.txt>
* @license CECILL v2 <http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt>
* @copyright 1999-2014 Tela Botanica <accueil@tela-botanica.org>
*/
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;
}
}