I'm trying to use gulp-replace-task to replace text inside the index.php
file. I know this can be done inside a .html
, .css
and .js
file, but can't seem to get it working inside a .php
file.
Can somebody please help me?
This is my code:
gulp.task('header', function() {
return gulp.src(rootPath + 'templates/header.php')
.pipe(replace({
patterns: [{
json: {
'main.css': 'style.css'
}
}]
}))
// Save the hashed css file
.pipe(gulp.dest(rootPath + 'templates/header.php'));
});
Instead of using the "json" object to find/replace, use the RegEx syntax in the gulpfile.js below. You'll end up with
build/php/templates/header.php
that contains the replaced text:gulpfile.js
header.php
Project File Structure