summaryrefslogtreecommitdiffstats
path: root/admin/WebConsole/includes/InvFecha.php
blob: 5bc46c4a98595565f8ba8dc3ac7ca250783382bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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("");
}
?>