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/96024d5c09b3ef845e9e11de81e828c4 to your computer and use it in GitHub Desktop.
Save parzibyte/96024d5c09b3ef845e9e11de81e828c4 to your computer and use it in GitHub Desktop.
<?php
$fechaActual = date("Y-m-d H:i:s");
$fechaRegistro = "2017-04-16 17:10:00";
$segundosFechaActual = strtotime($fechaActual);
$segundosFechaRegistro = strtotime($fechaRegistro);
$segundosTranscurridos = $segundosFechaActual - $segundosFechaRegistro;
echo $segundosTranscurridos;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment