Sometimes I like to use PHP's built-in development server to work on quick stuff like so:
php -S 127.0.0.1:8888
However I seem to run into heavy caching issues from time to time where I need to restart the server in order to see even simple HTML changes.
I haven't been able to find any options to disable this or otherwise pinpoint what might be causing this frustration.
Note: I usually have Chrome's Developer Tools open with browser caching disabled while I'm doing this. I don't think it's a browser caching issue.
Is there anything I can try?