POP3::strip_clf()publicWP 1.0

Метод класса: POP3{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$POP3 = new POP3();
$POP3->strip_clf ( $text );
$text **
-
По умолчанию: ""

Код POP3::strip_clf() WP 6.4.3

function strip_clf ($text = "") {
    // Strips \r\n from server responses

    if(empty($text))
        return $text;
    else {
        $stripped = str_replace(array("\r","\n"),'',$text);
        return $stripped;
    }
}