How to remove a header (for example, Last-Modified ) that has already been installed but not yet sent by wire?
(Perhaps it was installed by Apache, "pre" -PHP and something else.)
I am currently using PHP 5.2.17 and header_remove is an undefined function.
To be clear, I do not want to send an empty header line, such as header("Foo-bar:") . I want to completely remove it from the output buffer and send nothing .
source share