WorkingDog,
Actually, you can't read ' anything ' in the browser, as php doesn't send ' through ' the browsers, it only reflects the content from the server-side but as it doesn't come through the browser itself in full text format, you can NOT see php code in the browser by even firebug or any other non-standard practices.
If you hack the server, where the files are stored, sure, you can rip every file out of there with no issue but that still has nothing to do with the browser and php, as that would be a full hack and not just a view source issue.
Here is a link showing an example of what I'm talking about:
http://php.about.com/od/troubleshooting/qt/view_source.htm
You can't see php code in a standard browser, it is impossible, as the code is designed for working server-side commands to build the content within the broswer without revealing the actual processing data itself.
You guys may be mistaking the content of exposed html and javascript links that haven't been properly concealed but, you won't see any of the php wrapped code, as it ' doesn't come through the broswer ' , which is why it builds faster uploads of pages when you go to a php site vs. an html page. It processes the data on the server-side and not within the broswer/on the page itself.
It's php 101 stuff, man. Like I've said before, check this stuff out yourselves by actual trial in the field.