This has me scratching my head. I pulled some code displayed on a web page and it will not parse. When I retype the code exactly then it would parse.
Could it be something in the text type?
I don't want to retype in a whole class so any help would be appreciated.
<?php
// the retyped version parses
function eof()
{
return($this->fp==FALSE);
}
// This version does not parse
function eof()
{
return($this->fp==FALSE);
}
?>