diff options
Diffstat (limited to 'include/functions.php')
-rwxr-xr-x | include/functions.php | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/include/functions.php b/include/functions.php index d06823d..fd46c63 100755 --- a/include/functions.php +++ b/include/functions.php @@ -1,12 +1,8 @@ <?php
#===============================================================================
-# FUNCTION: Removes all line breaks and tabs from a string or an array with strings
+# Remove line breaks and tabs from a string
#===============================================================================
-function removeLineBreaksAndTabs($mixed, $replace = NULL) {
- if(is_array($mixed)) {
- return array_map(__FUNCTION__, $mixed);
- }
-
- return is_string($mixed) ? str_replace(["\r\n", "\r", "\n", "\t"], $replace, $mixed) : $mixed;
+function removeLineBreaksAndTabs($string) {
+ return str_replace(["\r\n", "\r", "\n", "\t"], NULL, $string);
}
?>
\ No newline at end of file |