source:
spip-zone/_plugins_/bannieres/bannieres_2.0/bannieres_fonctions.php
@
30253
Last change on this file since 30253 was 30253, checked in by , 12 years ago | |
---|---|
File size: 444 bytes |
Line | |
---|---|
1 | <?php |
2 | /** |
3 | * Plugin Bannières |
4 | * |
5 | * Copyright (c) 2008 |
6 | * François de Montlivault |
7 | * Ce programme est un logiciel libre distribue sous licence GNU/GPL. |
8 | * Pour plus de details voir le fichier COPYING.txt. |
9 | * |
10 | **/ |
11 | |
12 | //Conversion de date |
13 | function bannieres_datefr($date) { |
14 | $split = explode('-',$date); |
15 | $annee = $split[0]; |
16 | $mois = $split[1]; |
17 | $jour = $split[2]; |
18 | return $jour.'/'.$mois.'/'.$annee; |
19 | } |
20 | |
21 | ?> |
Note: See TracBrowser
for help on using the repository browser.