Subversion Repositories eFlore/Applications.cel

Rev

Blame | Last modification | View Log | RSS feed

<?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;
        }
}