How to remove header content-type in apache ?
The following code does not work
header_remove('content-type');
Try this.
header("content-type: none");
I don't know why, but it's worked for me.
I cannot find any reference mentioned about this. but it's simply removed the content-type
from header for me. It' may be apache's bug or PHP's bug. So try it and use it with careful.