API15

JMailHelper/cleanText

From Joomla! Documentation

< API15:JMailHelper
Revision as of 13:36, 12 May 2013 by JoomlaWikiBot (talk | contribs) (removing red link to edit, no existant pages)

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 multi-line inputs.

[<! removed edit link to red link >]

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

Syntax[edit]

cleanText($value)
Parameter Name Default Value Description
$value $value Multi-line string to be cleaned.

Returns[edit]

string Cleaned multi-line string.

Defined in[edit]

libraries/joomla/mail/helper.php

Importing[edit]

jimport( 'joomla.mail.helper' );

Source Body[edit]

function cleanText( $value ) {
        return trim( preg_replace( '/(%0A|%0D|\n+|\r+)(content-type:|to:|cc:|bcc:)/i', '', $value ) );
}

[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >

Examples[edit]

<CodeExamplesForm />