我的服务器上有一个php脚本(让我们调用这个/test.php)。在Grunt自动解析我的SCSS和JS后,我想运行这个test.php脚本(它会重置我的内存缓存)。我似乎找不到办法做到这一点。有人知道吗?
答案 0 :(得分:4)
您可以使用grunt-shell通过php -f your-script.php
grunt.initConfig({
shell: {
php: {
command: 'php -f your-script.php'
}
}
}
grunt.registerTask('runTestPhp', ['shell:php']);
如果您不想通过cli运行php脚本,请查看grunt-php。