Project

General

Profile

Actions

SnipPets » History » Revision 1

Revision 1/7 | Next »
Simon, 10/14/2009 06:19 PM


= Snippets =

Remove trailing whitespaces

http://jimbojw.com/wiki/index.php?title=How_to_find_PHP_files_with_trailing_whitespace

'''Command Line :''' {{{
echo '\\s\\s+\\Z/m", file_get_contents($file))) echo("$file\n");} ?>' | php
}}}

'''PHP file script :''' {{{
foreach (glob('**/*.php') as $file){
if (preg_match('/\\?'.'>\\s\\s+\\Z/m',file_get_contents($file)))
echo("$file\n");
}
?>
}}}

Updated by Simon over 14 years ago · 1 revisions