I'm currently testing a web application and kept noticing my changes weren't being updated after each save of the PHP file.
As far as I'm aware, I'm using no current PHP caching solution. I'm running PHP 5.5.3 with a fresh copy of CodeIgniter.
Here's what happened:
- I noticed PHP didn't seem to be loading the latest code changes as I made them
- After noticing the problem, I output
<?php echo time();?>
into all my view files - Now, the time updates on every page load - indicating PHP is processing each page's code
- But still sometimes the page code updates don't take place until 3-5 page loads later
- I've tried disabling and empty my browser cache multiple times
Am I right in thinking this is a PHP issue rather than a browser one, given the fact that the time()
output is being updated?