I had to work on a system where words like "Wedenesday" and "brithday" were present in pretty much every namespace around - variable names, function names, table names.... and everything from comments to UI text. And speaking of UI, the text for indicating that no records were found for a query (copy-pasted everywhere a result set would be displayed) was "Have No Record". Oh, except for one location where it hadn't been translated from the developers' native language.
Oh, and the developers also enjoyed writing things like
function foo($bar, $baz=null, $wibble=object, $womble)
{...}
And the code itself wasn't up to much either.
dalecosp wrote: Oh, and another question for purists ... is a "parse error" == "syntax error"?
I think the former is strictly speaking a superset of the latter: an error during the parsing of the source vs. an error in the syntax of the source being parsed; parse errors might therefore occur for reasons other than bad syntax (parser bugs).