Viewing file: fecha1.php (2.02 KB) -rw-rw-rw- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<html>
<head>
<title>Documento sin título</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<form name="form1" method="post" action="">
Fecha inicial
<input name="f1" type="text" id="f1">
<input type="submit" name="Submit" value="Enviar">
</form>
<p>getdate =<? echo getdate()?> <br>
date = <? echo date(100)?> <br>
time = <? echo time()?> <br>
formateando d m Y <? echo date('d/m/Y', time())?> <br>
sumando días más<br>
<? $a= time();
$a=$a+(86400*18);
echo " un día más ".date('d/m/Y', $a)
?>
<br>
<br>
y ahora el tal strtotime
<?
$today = getdate();
$month = $today['month'];
$montho = $today['mon'];
$mday = $today['mday']-1;
$year = $today['year'];
$b = strtotime("10 jun 2000");
echo "<br>Nueva: ".$b;
?>
</p>
<p> </p>
<p>en español. tengo la fecha, la spliteo, aplico un if para el mes, la
convierto a timestamp, le sumo 86400</p>
<p> </p>
<p>Fecha original 28/02/2006</p>
<? //FECHA SIGUIENTE: este script empieza aquí
$fechaorig = "28/02/2006";
list ($dia, $mes, $anno) = split("/", $fechaorig, 3);
echo $dia;
echo "<br>".$mes;
echo "<br>".$anno;
if ($mes==01){
$elmes="January";
}elseif($mes==02){
$elmes="February";
}elseif($mes==03){
$elmes="March";
}elseif($mes==04){
$elmes="May";
}elseif($mes==05){
$elmes="April";
}elseif($mes==06){
$elmes="June";
}elseif($mes==07){
$elmes="July";
}elseif($mes==08){
$elmes="August";
}elseif($mes==09){
$elmes="September";
}elseif($mes==10){
$elmes="October";
}elseif($mes==11){
$elmes="November";
}elseif($mes==12){
$elmes="December";
}
echo "<br><br>".$dia." - ".$elmes." - ".$anno;
echo "<br> Y ahora con ustedes.<br><br>";
$mismafecha = strtotime("$dia $elmes $anno");
echo $mismafecha;
$nuevafecha=$mismafecha + 86400;
echo "<br> ".$nuevafecha;
echo "<br>Fecha actual ".date('d/m/Y', $mismafecha);
echo "<br>Nueva Fecha ".date('d/m/Y', $nuevafecha);
//FECHA SIGUIENTE: este script termina aquí?>
</body>
</html>
|