API15

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.

Description[edit]

Cleans single line inputs.

[<! removed edit link to red link >]

<! removed transcluded page call, red link never existed >

Syntax[edit]

cleanLine($value)
Parameter Name Default Value Description
$value $value String to be cleaned.

Returns[edit]

string Cleaned string.

Defined in[edit]

libraries/joomla/mail/helper.php

Importing[edit]

jimport( 'joomla.mail.helper' );

Source Body[edit]

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 >

Examples[edit]

Code Examples[edit]