Skip to content

Instantly share code, notes, and snippets.

@RickKukiela
Last active July 11, 2022 16:08
Show Gist options
  • Save RickKukiela/72a0e91b9e721d219913a74712a7a3d0 to your computer and use it in GitHub Desktop.
Save RickKukiela/72a0e91b9e721d219913a74712a7a3d0 to your computer and use it in GitHub Desktop.
gulp.dest() -> .php + via require() (with opcache) = no update / cached data

Warning to the Masses

If you use gulp.dest() to update a .php file that is used as an include via require(), require_once() and I belive the include() variants on a system with opcache enabled you're gonna have a bad time.

You're gonna have a bad time south park

On linux based systems, gulp.dest() sets the modified time stamp of the output file back to the source file's modified time after writing it. This leaves the mtime of the file unchanged when directly editing an exisiting file via gulp (this is not the case on windows). This is a problem if the .php file written is used as a PHP include on systems with opcache enabled. Opcache will assume the file has not changed and therefore not read the file again. It will instead just assume the result of the include file from the last time it was actually ran.

To work around this add gulp-touch-cmd via npm i gulp-touch-cmd --save or npm i gulp-touch-cmd --save-dev depending on your project, then add const touch = require("gulp-touch-cmd") to your gulp file, and append .pipe(touch()) to your .pipe(gulp.dest()) calls where the file mtime value being updated is important.

Now when you run the compiler the file's mtime will be current and thus opcache will invalidate its previous result.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment