Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created May 25, 2022 17:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/5dc4e9bc9710fefcbbc0c1cbb7ce5a81 to your computer and use it in GitHub Desktop.
Save parzibyte/5dc4e9bc9710fefcbbc0c1cbb7ce5a81 to your computer and use it in GitHub Desktop.
<?php
$fechaActual = "2017-05-16 20:40:15";
$fechaRegistro = "2017-04-16 17:10:00";
$segundosFechaActual = strtotime($fechaActual);
$segundosFechaRegistro = strtotime($fechaRegistro);
$segundosTranscurridos = $segundosFechaActual - $segundosFechaRegistro;
$diasTranscurridos = $segundosTranscurridos / 86400;
echo $diasTranscurridos;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment