vote up 0 vote down star
2

Hello , I think i encountered a PHP bug When my header file is in UTF-8 encoding and my index.php file is in ANSI PHP gives " headers already sent " error . Is this normal ? and if yes , can you explain why ?

flag

that's a funny one – RageZ Nov 6 at 4:32
Are you sure you're sending any headers before you've output anything to the browser? – BraedenP Nov 6 at 4:51
I'm telling ya .. one moment is working , net i change the encoding , F5 , showing headers error , converting back to ANSII > F5 , Working .. – Aviatrix Nov 6 at 5:04

2 Answers

vote up 2 vote down check

Maybe your editor is writing a UTF-8 BOM to the beginning of the "header" file, and PHP, not knowing what the BOM is, considers it as data to output and does that annoying thing PHP does?

There's a long-standing WONTFIX bug on PHP's mis-handling of the BOM. Probably your only workaround is to find an editor that writes UTF-8 without it (which, actually, is most of them.)

link|flag
vote up 1 vote down

I've seen this before. Somewhere outside of the the encoding is generating some whitespace. It was a pain and a half to track down.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.