Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8115623
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T03:31:48+00:00 2026-06-06T03:31:48+00:00

I am trying to learn how to create and test for the expiration of

  • 0

I am trying to learn how to create and test for the expiration of a timestamp. I set up a simple example, trying to test for a timestamp that has expired, but it does not seem to work correctly, and I was wondering if anyone could help me figure out why it wouldn’t echo ‘valid’ and ‘expired’ in the appropriate times?

<?php

echo'
<html>
<head>
</head>
<body>';

//set static current time
$timestamp = 1340037073;

if($timestamp <= strtotime("+10 minutes", $timestamp)){
    echo "Valid";
}else{
    echo "Expired";
}


echo'
</body>
</html>';




?>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-06T03:31:49+00:00Added an answer on June 6, 2026 at 3:31 am

    current time is obtained with time() function, so $timestamp should contain the time obtained from the external source, like database, or whatever, to be checked against current time, to see if it has expired:

    //test timestamp
    $timestamp = 1340037073;
    
    //check if it has expired (600 = 60*10 seconds = 10 minutes)
    if ((time() - $timestamp) < 600)
    {
      echo 'valid';
    }
    else
    {
      echo 'expired';
    }
    

    Hope it works for you 🙂

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to learn how to create tags in PHP/MySQL. Does anyone know
I’m trying to learn Haskell and I was trying to create a function that
I'm trying to learn qmake, but can't find a native way to create .pri
I am trying to create a pacman game to learn XNA, but I am
I'm trying to set up some tests for a website that has a forum.
I'm trying to learn how to create custom controls, toolbars. Using .NET Reflector, I've
I am new to C# and trying to learn how to create windows form
I'm trying to learn JavaFX and maybe create a few learner games. I always
I'm trying to learn how to use lift. I can create project skeleton by
I'm trying to learn Regex & URL Rewriting in PHP. How can I create

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.