19,7 → 19,7 |
// | License along with this library; if not, write to the Free Software | |
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
// +------------------------------------------------------------------------------------------------------+ |
// CVS : $Id: bb_commun.fonct.php,v 1.2 2007-02-13 17:40:22 jp_milcent Exp $ |
// CVS : $Id: bb_commun.fonct.php,v 1.1 2005-11-23 10:22:25 jp_milcent Exp $ |
/** |
* Fonctions communes aux applications de Biblio Bota. |
* |
32,7 → 32,7 |
//Autres auteurs : |
*@author Jean-Pascal MILCENT <jpm@clapas.org> |
*@copyright Tela-Botanica 2000-2004 |
*@version $Revision: 1.2 $ $Date: 2007-02-13 17:40:22 $ |
*@version $Revision: 1.1 $ $Date: 2005-11-23 10:22:25 $ |
// +------------------------------------------------------------------------------------------------------+ |
*/ |
|
87,68 → 87,9 |
$tab_entites[' & '] = ' & '; |
return strtr($texte, $tab_entites); |
} |
|
/** |
* Fonction fournissant une date au format français depuis une date Mysql |
* |
* @param string la date au format Mysql |
* @return string la date au format français |
*/ |
function donnerDateConviviale($chaine) |
{ |
if (preg_match('/^(\d{4})-(\d{2})$/',$chaine, $match)) { |
$annee = $match[1]; |
$mois = $match[2]; |
switch ($mois) { |
case '01' : |
$mois_sortie = 'janvier'; |
break; |
case '02' : |
$mois_sortie = 'février'; |
break; |
case '03' : |
$mois_sortie = 'mars'; |
break; |
case '04' : |
$mois_sortie = 'avril'; |
break; |
case '05' : |
$mois_sortie = 'mai'; |
break; |
case '06' : |
$mois_sortie = 'juin'; |
break; |
case '07' : |
$mois_sortie = 'juillet'; |
break; |
case '08' : |
$mois_sortie = 'août'; |
break; |
case '09' : |
$mois_sortie = 'septembre'; |
break; |
case '10' : |
$mois_sortie = 'octobre'; |
break; |
case '11' : |
$mois_sortie = 'novembre'; |
break; |
case '12' : |
$mois_sortie = 'décembre'; |
break; |
} |
return $mois_sortie.' '.$annee; |
} else { |
return '?'; |
} |
} |
/* +--Fin du code ----------------------------------------------------------------------------------------+ |
* |
* $Log: not supported by cvs2svn $ |
* Revision 1.1 2005/11/23 10:22:25 jp_milcent |
* Ajout au dépot de l'application BiblioBota. |
* Elle doit à terme migrer dans eFlore. |
* |
* Revision 1.2 2005/05/17 10:10:08 jpm |
* Correction des bogues avant mise en ligne du site v4. |
* |