diff options
author | alonso <alonso@us.es> | 2010-10-23 09:22:07 +0000 |
---|---|---|
committer | alonso <alonso@us.es> | 2010-10-23 09:22:07 +0000 |
commit | 550b680d176cbccfecfe35fad440dd570d90ba5b (patch) | |
tree | c81a133cb819d719d5e2d103b2b6b12447b60bf7 /admin/WebConsole/includes/InvFecha.php | |
parent | 5f11948f55d9b9c11c76a75b65bde7d4e5477191 (diff) |
git-svn-id: https://opengnsys.es/svn/trunk@1313 a21b9725-9963-47de-94b9-378ad31fedc9
Diffstat (limited to 'admin/WebConsole/includes/InvFecha.php')
-rw-r--r-- | admin/WebConsole/includes/InvFecha.php | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/admin/WebConsole/includes/InvFecha.php b/admin/WebConsole/includes/InvFecha.php deleted file mode 100644 index 5bc46c4a..00000000 --- a/admin/WebConsole/includes/InvFecha.php +++ /dev/null @@ -1,37 +0,0 @@ -<? -/*______________________________________________________________________ - 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 |