JFilterOutput/cleanText: Difference between revisions
From Joomla! Documentation
New page: ===Description===
Cleans text of all formating and scripting code
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[Description:JFilterOutput/cleanText|Edit Descr... |
No edit summary |
||
Line 17: | Line 17: | ||
!Description | !Description | ||
|- | |- | ||
| | | &$text | ||
| | | | ||
| | | |
Revision as of 10:13, 30 March 2010
Description
Cleans text of all formating and scripting code
Template:Description:JFilterOutput/cleanText
Syntax
cleanText(&$text)
Parameter Name | Default Value | Description |
---|---|---|
&$text |
Defined in
libraries/joomla/filter/filteroutput.php
Importing
jimport( 'joomla.filter.filteroutput' );
Source Body
function cleanText (&$text)
{
$text = preg_replace("'<script[^>]*>.*?</script>'si", '', $text);
$text = preg_replace('/<a\s+.*?href="([^"]+)"[^>]*>([^<]+)<\/a>/is', '\2 (\1)', $text);
$text = preg_replace('/<!--.+?-->/', '', $text);
$text = preg_replace('/{.+?}/', '', $text);
$text = preg_replace('/ /', ' ', $text);
$text = preg_replace('/&/', ' ', $text);
$text = preg_replace('/"/', ' ', $text);
$text = strip_tags($text);
$text = htmlspecialchars($text, ENT_COMPAT, 'UTF-8');
return $text;
}
[Edit See Also] Template:SeeAlso:JFilterOutput/cleanText
Examples
<CodeExamplesForm />