See our Source Code Search Engine. It understands the lexical syntax of langauges, and can thus differentiate between the HTML text and the PHP code elements.
The query:
HTML=bar
will find "bar" in the HTML text, but not the PHP program code. The query
I=zap
will find zap as a variable, but not zap in the HTML text, or inside a PHP as character literal text.
The PHP scanner supporting this doesn't break the HTML in finer structures, so
HTML=foo
will find the foo. Not quite what you wanted, so no bonus points when the query is specified that way. But you could eliminate hits inside attributes with this query:
HTML=foo - HTML=/\=\".*\"/
which finds foo anywhere, including inside the attribute quotes, and then subtracts away all hits between pairs of quotes that form an attribute. So, maybe qualifies for bonus points anyway.