Limit the number of newlines in a string
A very short blog post this time. I often use the following short function to limit the number of breaks/newlines in comments that people can submit on a news article or other user input. You can easily limit the number of characters in a comment by using the PHP strlen function, but the comment can still use a lot of vertical space on your website if the user uses 5 breaks in his comment. See the function below to prevent this type of comments:
/**
* limitBreaks, prevents texts with a lot of enters/breaks after each other
*
* @param string $sText
* @param int $iAmount default 2, numbers of newlines that may occur after eachother
* @return string, cleaned up string with limited number of newlines
*/
function limitBreaks($sText, $iAmount=2)
{
return preg_replace("/[\r\n]{".($iAmount+1).",}\t*[\r\n]*/", str_repeat(PHP_EOL, $iAmount), $sText);
}
As you can see a simple but effective function.
https://t.me/Official_1xbet_1xbet/s/1168
AlbertEnark
17 Oct 25 at 7:34 am
https://t.me/Official_1xbet_1xbet/s/87
AlbertEnark
17 Oct 25 at 7:43 am
https://t.me/Official_1xbet_1xbet/s/1097
AlbertEnark
17 Oct 25 at 7:50 am
https://t.me/Official_1xbet_1xbet/s/976
AlbertEnark
17 Oct 25 at 7:55 am
https://t.me/Official_1xbet_1xbet/s/243
AlbertEnark
17 Oct 25 at 8:09 am
https://t.me/Official_1xbet_1xbet/s/106
AlbertEnark
17 Oct 25 at 8:16 am
https://t.me/Official_1xbet_1xbet/s/1212
AlbertEnark
17 Oct 25 at 8:21 am
https://t.me/Official_1xbet_1xbet/s/227
AlbertEnark
17 Oct 25 at 8:36 am
https://t.me/Official_1xbet_1xbet/s/456
AlbertEnark
17 Oct 25 at 8:42 am
https://t.me/Official_1xbet_1xbet/s/1148
AlbertEnark
17 Oct 25 at 8:48 am
https://t.me/Official_1xbet_1xbet/s/401
AlbertEnark
17 Oct 25 at 9:04 am
https://t.me/Official_1xbet_1xbet/s/867
AlbertEnark
17 Oct 25 at 9:10 am
https://t.me/Official_1xbet_1xbet/s/1488
AlbertEnark
17 Oct 25 at 9:16 am
https://t.me/Official_1xbet_1xbet/1850
Josephadvem
17 Oct 25 at 9:38 am
https://t.me/s/Official_1xbet_1xbet/1617
Josephadvem
17 Oct 25 at 9:54 am
https://t.me/Official_1xbet_1xbet/1857
Josephadvem
17 Oct 25 at 10:01 am
https://t.me/Official_1xbet_1xbet/1846
Josephadvem
17 Oct 25 at 10:07 am