POP3::strip_clf

Advertisement

Syntax Syntax

POP3::strip_clf( $text = "" )

Source Source

File: wp-includes/class-pop3.php

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

    function parse_banner ( $server_text ) {

Advertisement

Advertisement

Leave a Reply