If you are actively working on a website with PHP and the caching is making it so your current PHP file is not being updated, you can disable it by placing this at the top of your PHP file.
Place this in an include file, and everything will not be cached that includes it. Copy to Clipboard
opcache_reset();
Place this in a file and then this specific file will not be cached. Copy to Clipboard
opcache_invalidate(__FILE__, true);
|