/ Published in: PHP
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<?php function tiempo_transcurrido($fecha) { return "No hay fecha"; } return "Fecha incorrecta"; } if($ahora > $Fecha_Unix) { $diferencia = $ahora - $Fecha_Unix; $tiempo = "Hace"; } else { $diferencia = $Fecha_Unix - $ahora; $tiempo = "Dentro de"; } $diferencia /= $duraciones[$j]; } if($diferencia != 1) { $intervalos[5].="e"; //meses... la magia del español $intervalos[$j].= "s"; } return "$tiempo $diferencia $intervalos[$j]"; } // Ejemplos de uso // fecha en formato yyyy-mm-dd // echo tiempo_transcurrido('2010/02/05'); // fecha y hora echo tiempo_transcurrido('2011/02/21 21:37:00'); ?>