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

  • Home
  • SEARCH
  • 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 8067473
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T12:18:39+00:00 2026-06-05T12:18:39+00:00

I want to set up a simple cache feature with php. I want the

  • 0

I want to set up a simple cache feature with php. I want the script to get data from somewhere, but not to do it on every page view, but only every hour.

I know i can have a cron job that runs a php script every hour.

But I was wondering if this can be achieved without cron, just inside the php script that created the page based on the data fetched (or cached). I’m really looking the simplest solution possible. It doesn’t have to be accurate

  • 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-05T12:18:41+00:00Added an answer on June 5, 2026 at 12:18 pm

    I would use APC as well, but in either case you still need some logic. Basic file cache in PHP:

    if (file_exists($cache_file) and time() - filemtime($cache_file) < 3600)
    {
        $content = unserialize(file_get_contents($cache_file));
    }
    else
    {
        $content = your_get_content_function_here();
        file_put_contents($cache_file, serialize($content));
    }
    

    You only need to serialize/unserialize if $content is not a string (e.g. an array or object).

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

Sidebar

Related Questions

I want set Listbox background to transparent but not working Is there any idea?
I'm looking for CSS rules to set a simple page layout. I want a
so I made a simple user log in website, and I want to set
I set up a simple dynamic text on my stage. I want to use
I just set up a simple virtual server with Debian netinst. Now I want
I want to make a simple test programm which set the color of the
This is a simple requirement: I want to add a set of strings to
I'm looking for as simple way to create an identity set. I just want
i want set class for repeater when doPostBack for those dataID i wan but
What I want is pretty simple conceptually but I can't figure out how it

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.