Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. //Hago la consulta etc... y esta es la variable donde almacenaré la fecha
  2. $fec_ = transcurridoPublicacion($fila['Prod_Fec']);
  3.  
  4. function transcurridoPublicacion($fecha){
  5. $fecha2 = date("Y-m-d H:i:s");
  6. $fechaF = date_diff($fecha, $fecha2);
  7. return $fechaF;
  8. }
  9.  
  10. function transcurridoPublicacion($fecha){
  11. $fecha1 = date($fecha);
  12. $fecha2 = new DateTime('2011-01-03 17:13:00');
  13. $fechaF = $fecha->diff($fecha2);
  14. // Lo siguiente es por si quieres ponerlo ya en texto la diferencia
  15. // $elapsed = $interval->format('%y años %m meses %a dias %h horas %i minutos %S segundos');
  16. // return $elapsed;
  17. return $fechaF;
  18. }
  19.  
  20. $fechaF = $fecha->diff($fecha2);
  21.  
  22. print $fechaF->format("%H:%I:%S");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement