When I set a custom header in Apache + mod_php5, this works fine:
header(\'Foo: Bar\');
But when I try this while also sending a 3
Try:
header('Foo: bar', true, 304);