POP3::strip_clf( $text = "" )
Description Description
Source Source
File: wp-includes/class-pop3.php
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; } }
Expand full source code Collapse full source code View on Trac