error end line in file

error end line in file
This commit is contained in:
Maxim Kostjukevich 2013-07-24 13:40:57 +03:00
parent b8c2c694c9
commit 7143898cae
29 changed files with 33 additions and 6 deletions

View File

@ -42,3 +42,5 @@ function fenom_modifier_capitalize_ucfirst($string, $uc_digits = null) {
return $string[0];
}
}
?>

View File

@ -36,5 +36,4 @@
return preg_match_all('~\S~', $string, $match);
}
?>

View File

@ -5,3 +5,4 @@
return sizeof(preg_split('~[\r\n]+~', $string));
}
?>

View File

@ -4,4 +4,4 @@
return preg_match_all('~\S\.(?!\w)~', $string, $match);
}
?>

View File

@ -4,3 +4,4 @@
return sizeof(preg_grep('~[a-zA-Z0-9\\x80-\\xff]~', preg_split('~\s+~', $string)));
}
?>

View File

@ -19,3 +19,4 @@
return;
}
}
?>

View File

@ -5,3 +5,4 @@
}
return $string;
}
?>

View File

@ -69,4 +69,6 @@
return $_res;
}
return $string;
}
}
?>

View File

@ -34,3 +34,4 @@
}
return $query;
}
?>

View File

@ -3,3 +3,4 @@
function fenom_modifier_hexcolor($int) {
return sprintf('%06x', $int);
}
?>

View File

@ -5,3 +5,4 @@
return preg_replace('~^~m', str_repeat($char, $chars), $string);
}
?>

View File

@ -3,3 +3,4 @@
function fenom_modifier_ini_get($directive) {
return ini_get($directive);
}
?>

View File

@ -3,3 +3,4 @@
function fenom_modifier_int2color($string) {
return sprintf('%06X', $string);
}
?>

View File

@ -28,3 +28,4 @@
}
return $r;
}
?>

View File

@ -4,3 +4,4 @@
$int = intval($string);
return $int > 0 ? $int : 0;
}
?>

View File

@ -51,4 +51,4 @@
}
}
}
?>
?>

View File

@ -3,3 +3,4 @@
function fenom_modifier_nl2br($string) {
return nl2br($string);
}
?>

View File

@ -8,3 +8,4 @@
return FALSE;
}
}
?>

View File

@ -4,3 +4,4 @@
function fenom_modifier_replace($string, $search, $replace) {
return str_replace($search, $replace, $string);
}
?>

View File

@ -7,4 +7,4 @@
}
return $uri;
}
?>

View File

@ -5,3 +5,4 @@
return ($int > 0 ? '+' : '') . $int;
}
?>

View File

@ -4,3 +4,4 @@
return implode($spacify_char, preg_split('//', $string, -1, PREG_SPLIT_NO_EMPTY));
}
?>

View File

@ -4,3 +4,4 @@
return sprintf($format, $string);
}
?>

View File

@ -4,3 +4,4 @@
return preg_replace('~\s+~', $replace, $text);
}
?>

View File

@ -8,3 +8,4 @@
return strip_tags($string);
}
}
?>

View File

@ -48,5 +48,5 @@
}
return $string;
}
?>

View File

@ -16,3 +16,4 @@
}
return $size;
}
?>

View File

@ -66,3 +66,6 @@
return implode($tag, $ret);
}
}
?>

View File

@ -28,3 +28,4 @@
return $time;
}
?>