Whitespace in PHP files is sometimes problematic, so I'm trying to find files which meet common problematic criteria. I'm trying to find all files recursively which have one or both of these conditions:
1) Does not begin with a < or # character.
and/or
2) Does not end in a > character, unless it does end in a close brace which is followed by any amount of newlines.
I think that the first condition would be: $[^<#]
I think that the second condition would be: [ [^>^] | [}\n*^]]
However, note that in my naive regexes $ and ^ represent the start and end of the file, not of any line in the file. And even with those, assuming that they were correct, how would I combine them? Like so?
[$[^<#]] | [[ [^>^] | [}\n*^]]]
Then, putting them in grep:
grep -r [$[^<#]] | [[ [^>^] | [}\n*^]]] *
Obviously, this is Not Working (tm). Can someone teach me how to correct the mistakes? Thanks.
This is a good file:
<?php
?>
So is this:
<?php
function someFunc(){
}
And this is good too:
#!/usr/bin/php -q
<?php
?>
Leading HTML is fine:
<html>
<?php
echo '</html>';
?>
Trailing HTML is fine too:
<?php
echo '<html>';
?>
</html>
This is bad (leading newline):
<?php
?>
This is bad too (leading space):
<?php
?>
This is bad as well (trailing newline):
<?php
?>
?>at the end of files. This is valid PHP, and is included in many mainstream PHP coding standards, including the PEAR coding standard. Ending files with?>is asking for trouble. – Frank Farmer Sep 13 '12 at 22:42include()the file, and see if the output it generates when you include it has leading/trailing whitespace. – Frank Farmer Sep 13 '12 at 22:44phptags --warn *.phpfor that. – mario Sep 13 '12 at 22:46-Eoption to grep (or egrep) to turn on advance regexp. Second one:^is for the beginning and$for then ending of a line, not the opposite. – Aif Sep 13 '12 at 22:52