|
|
Snippet Name: Remove extra linebreaks
Description: Won't allow more than two linebreaks tags in a row.
Comment: (none)
Language: PHP
Highlight Mode: PHP
Last Modified: February 27th, 2009
|
<?PHP
$string = PREG_REPLACE('/(\r?\n){2,}/', "\n\n", $string);
?> |
|
|
|
|
|