Yes, you can. This will override any previously defined Expires header:
header ('Expires:');
It will only work if the headers are not already sent, so before you repeat something, and PHP will start sending data to the browser. You may need to use output buffering.
And when upgrading to PHP 5.3. * you can also use header_remove('Expires'); .
source share