diff options
Diffstat (limited to 'admin/WebConsole/includes/InvFecha.php')
-rw-r--r-- | admin/WebConsole/includes/InvFecha.php | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/admin/WebConsole/includes/InvFecha.php b/admin/WebConsole/includes/InvFecha.php new file mode 100644 index 00000000..5bc46c4a --- /dev/null +++ b/admin/WebConsole/includes/InvFecha.php @@ -0,0 +1,37 @@ +<? +/*______________________________________________________________________ + Cambia de posicion los extremos de una fecha. Devuelve una fecha con formato + dd-mm-aaaa si el formato de entrada es aaaa-mm-dd y viseversa + Parametros: + - fecha: Una cadena con los datos de una fecha +_______________________________________________________________________*/ +function InvFecha($fecha){ + if ($fecha=="0000-00-00")return(""); + + $auxsplit=split(" ",$fecha); + list($anno_p,$mes_p,$dia_p)=split("[/-]",$auxsplit[0]); + $fecha_p=$dia_p.'-'.$mes_p.'-'.$anno_p; + return($fecha_p); +} +//////////////////////////////////////////////////// +//Convierte fecha de mysql a normal +//////////////////////////////////////////////////// +function sacafechaDB($fecha){ + ereg( "([0-9]{2,4})-([0-9]{1,2})-([0-9]{1,2})", $fecha, $mifecha); + $lafecha=$mifecha[3]."/".$mifecha[2]."/".$mifecha[1]; + return $lafecha; +} + +//////////////////////////////////////////////////// +//Convierte fecha de normal a mysql +//////////////////////////////////////////////////// + +function metefechaDB($fecha){ + ereg( "([0-9]{1,2})/([0-9]{1,2})/([0-9]{2,4})", $fecha, $mifecha); + $lafecha=$mifecha[3]."-".$mifecha[2]."-".$mifecha[1]; + return $lafecha; +} +function HoraValida($hora){ + if ($hora=="00:00:00")return(""); +} +?>
\ No newline at end of file |