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 7165095
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T14:11:04+00:00 2026-05-28T14:11:04+00:00

I want to cache a number of php pages that display different data at

  • 0

I want to cache a number of php pages that display different data at the beginning of every hour (xx:00:01)?

So far, I’ve found a way of cacheing a page +1hour from the time of accessing (or modifying the file), but if the user accesses the page at xx:59:00, then at xx+1:00:01, he will see the cache’d page data, not the newly displayed data.

What do I need to write to get a regular, “top-of-the-hour” cache expiry, preferably using .htaccess?

Final code (non htaccess):

$nexthour = mktime(date("H")+1, 00, 20) - mktime();
header("Cache-Control: public, must-revalidate, max-age=".$nexthour.", s-maxage=".$nexthour);

At the top of each page.

  • 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-05-28T14:11:05+00:00Added an answer on May 28, 2026 at 2:11 pm

    can be done with htaccess but is kind of a pain.

    RewriteCond %{TIME_WDAY} ^0$
    RewriteCond yourfile.php - [E=daystring:SUN]
    #etc (7x)
    
    RewriteCond %{TIME_MON} ^0$
    RewriteCond yourfile.php - [E=monthstring:JAN]
    #etc (12x)
    
    Header set "Expires" "%{daystring}, %{TIME_DAY} %{monthstring} %{TIME_YEAR} %{TIME_HOUR}:59:59 GMT "
    

    Better to just do this in the PHP itself (after session_start()).

    <?php
    $nexthour = mktime (date("H"), 59, 59);
    header('Expires: '.gmdate('D, d M Y H:i:s \G\M\T', $nexthour)); 
    ?>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to cache custom data in an ASP.NET application. I am putting lots
I want to cache query results so that the same results are fetched for
I want to display from cache for a long time and I want a
I want to implement a two-pass cache system: The first pass generates a PHP
I want to cache data on the client. What is the best algorithm/data structure
I have a data file that lists hits and misses for a certain cache
I'm writing a basic crawler that simply caches pages with PHP. All it does
Currently ASP.NET MVC's OutputCache attribute has a huge downfall. If you want to cache
It's common to want browsers to cache resources - JavaScript, CSS, images, etc. until
I want a ASP.NET cache item to be recycled when a specific file is

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.