When I have a file that I run through phpQuery that has stuff like
or ©
in it somehow a  is added.
so when I have this file (hello.html):
hello, this is a test ©
and I run this code:
$f = phpQuery::newDocumentFile( 'hello.html' );
echo $f->html();
I get the following output:
hello, this is a test ©
Is there something I can do to fic this?