Código PHP:
<?php
session_start();
if($_SESSION['autenticado']!==1){
header("location:../../user/login.php");
}else{
$_SESSION['Id_user'];
$fechaGuardada = $_SESSION["ultimoAcceso"];
$ahora = date("Y-n-j H:i:s");
$tiempo_transcurrido = (strtotime($ahora)-strtotime($fechaGuardada));
if($tiempo_transcurrido >= $tiempo)
{
unset($_SESSION['autenticado']);
session_destroy(); // destruyo la sesión
header("location:../../user/login.php");
exit;
}else {
$_SESSION["ultimoAcceso"] = $ahora;
}
?>