Jump to content
Fórum Script Brasil
  • 0

Pagina Expirar


SidewZygote

Question

1 answer to this question

Recommended Posts

  • 0

Encontrei isso com a Gemini:

<?php
session_start();

// Verifica se a sessão já existe
if (isset($_SESSION['last_activity'])) {
    // Calcula o tempo de inatividade em segundos
    $time_elapsed = time() - $_SESSION['last_activity'];
    // Define o tempo limite em segundos (5 minutos neste caso)
    $timeout_duration = 300;

    // Se o tempo de inatividade exceder o limite, destrói a sessão e redireciona
    if ($time_elapsed >= $timeout_duration) {
        session_unset();
        session_destroy();
        header("Location: login.php"); // Redireciona para a página de login
    }
}

// Atualiza o timestamp da última atividade
$_SESSION['last_activity'] = time();

// Resto do seu código PHP

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652.1k
×
×
  • Create New...