I was using zend framework to build a site. All the .php controller files and all .phtml files were encoded as utf-8(without BOM). When I visited the site on localhost, most of the stuff were shown as I expected. ALL English and Chinese characters were presented correctly. But one problem is that there were two unreadable characters at the bottom of the page(not part of the footer of my html), each of which looks like a black diamond with a '?' inside. I changed the file suffix(.phtml) to .html, and opened it with a browser directly, it seemed ok--no unreadable characters. What seems to be wrong with my phtml files?
|
show 3 more comments
feedback
|
|
You probably have a closed php tag in some controller or other non-template php file. Having so may cause some thrash characters to escape to the output. As a rule of thumb, never ever close php tags on non-template php files and/or classes. Correct form:
Incorrect:
Usually time is wasted searching the problem in the template (.phtml) files, when it's not there. | |||||||
feedback
|
phtmlfiles, and you do, I think you should look at the last few bytes with a HEX editor or a tool likeod(1)and tell us what they are... – pavium Jun 5 '11 at 12:55