I see somewhere people doing something like:
<?php
header('HTTP/1.0 200 OK');
header('HTTP/1.1 200 OK');
?>
What's the purpose of this? Seems the second one will always overwrite the first header? Or is this because if some clients doesn't support http 1.1 so they can still receive a 1.0 header?