aboutsummaryrefslogtreecommitdiffstats
path: root/include/functions.php
blob: e920ef12920426e66e65edc401019a4783ccf1ad (plain)
1
2
3
4
5
6
7
8
<?php
#===============================================================================
# Remove line breaks and tabs from a string
#===============================================================================
function removeLineBreaksAndTabs($string) {
	return str_replace(["\r", "\n", "\t"], NULL, $string);
}
?>