API16

JFilterOutput/ampReplace

From Joomla! Documentation

< API16:JFilterOutput

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]

Replaces & with & for xhtml compliance


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

Syntax[edit]

static ampReplace($text)
Parameter Name Default Value Description
$text

Defined in[edit]

libraries/joomla/filter/filteroutput.php

Importing[edit]

jimport( 'joomla.filter.filteroutput' );

Source Body[edit]

static function ampReplace($text)
{
        $text = str_replace('&&', '*--*', $text);
        $text = str_replace('&#', '*-*', $text);
        $text = str_replace('&amp;', '&', $text);
        $text = preg_replace('|&(?![\w]+;)|', '&amp;', $text);
        $text = str_replace('*-*', '&#', $text);
        $text = str_replace('*--*', '&&', $text);

        return $text;
}


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

Examples[edit]

Code Examples[edit]