API15:JMailHelper/cleanText
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
Contents |
Description
Cleans multi-line inputs.
Description:JMailHelper/cleanText
Syntax
cleanText($value)
| Parameter Name | Default Value | Description |
|---|---|---|
| $value | $value Multi-line string to be cleaned. |
Returns
string Cleaned multi-line string.
Defined in
libraries/joomla/mail/helper.php
Importing
jimport( 'joomla.mail.helper' );
Source Body
function cleanText( $value ) { return trim( preg_replace( '/(%0A|%0D|\n+|\r+)(content-type:|to:|cc:|bcc:)/i', '', $value ) ); }
[Edit See Also] SeeAlso:JMailHelper/cleanText
Examples
<CodeExamplesForm />
