Owl\Libraries\FtsUtils::stripCrLf PHP 메소드

stripCrLf() 개인적인 정적인 메소드

remove all cr+lf from given string
private static stripCrLf ( $str )
    private static function stripCrLf($str)
    {
        return preg_replace("/[\r\n]+/", "", $str);
    }