PHP Storm searching for a string
Friday, May 11th, 2012If you use PHP Storm, then this will help you find something in the code such as short tags for PHP.
We had an issue that some of our server environments did not have php short tags enabled. We needed to get rid of them!
So, what you do is open up PHP Storm..then (mac version ) and hold down control, and hold down shift, then press F and in the Options check the Regular expression box. Then in the Text to Find enter:
<\?[^(php|xml)]
Kudos to Brian for this tip!