Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm looking for some sort of tool that can search a (large) amount PHP source for a given string. It should ignore when the string is used as a variable name or array key.

Bonus points if it can ignore CSS class names and javascript variable names. (Eg. Given <p class="foo">bar</p><?php $zap = 1; ?>, searching for 'foo' will not match, searching for 'bar' will match, searching for 'zap' will not match)

share|improve this question
2  
This is not the proper place for this question. It is not a recommendation or suggestion engine. This sort of question is better suited for Stack Overflow Chat. See don't ask and the rest of the faq. – John Conde Feb 7 at 2:50
most good ides can do this – Dagon Feb 7 at 2:56
Wrong place to post. Closing. I don't think Chat will help though. :-( Edit: can't close it myself .. voted to close instead – RickMeasham Feb 7 at 3:07

closed as not constructive by John Conde, Dagon, RickMeasham, Marty Wallace, gnat Feb 7 at 13:02

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

1 Answer

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.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.