API16

JFilterOutput/cleanText

From Joomla! Documentation

< API16:JFilterOutput
Revision as of 05:13, 30 March 2010 by Doxiki (talk | contribs)

The "API16" 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 text of all formating and scripting code

[Edit Descripton]

Template:Description:JFilterOutput/cleanText

Syntax[edit]

cleanText(&$text)
Parameter Name Default Value Description
&$text

Defined in[edit]

libraries/joomla/filter/filteroutput.php

Importing[edit]

jimport( 'joomla.filter.filteroutput' );

Source Body[edit]

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('/&nbsp;/', ' ', $text);
        $text = preg_replace('/&amp;/', ' ', $text);
        $text = preg_replace('/&quot;/', ' ', $text);
        $text = strip_tags($text);
        $text = htmlspecialchars($text, ENT_COMPAT, 'UTF-8');
        return $text;
}

[Edit See Also] Template:SeeAlso:JFilterOutput/cleanText

Examples[edit]

<CodeExamplesForm />