POP3::strip_clf()
Метод класса: POP3{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
$POP3 = new POP3(); $POP3->strip_clf ( $text );
- $text **
- -
По умолчанию: ""
Код POP3::strip_clf() POP3::strip clf WP 6.6.2
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; } }