JMailHelper/cleanLine
From Joomla! Documentation
< API15:JMailHelper
The "API15" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.
Contents
Description
Cleans single line inputs.
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax
cleanLine($value)
Parameter Name | Default Value | Description |
---|---|---|
$value | $value String to be cleaned. |
Returns
string Cleaned string.
Defined in
libraries/joomla/mail/helper.php
Importing
jimport( 'joomla.mail.helper' );
Source Body
function cleanLine( $value ) {
return trim( preg_replace( '/(%0A|%0D|\n+|\r+)/i', '', $value ) );
}
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >