API15:JFilterOutput/ampReplace
From Joomla! Documentation
Description
Replaces & with & for xhtml compliance
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax
ampReplace($text)
| Parameter Name | Default Value | Description |
|---|---|---|
| $text |
Defined in
libraries/joomla/filter/filteroutput.php
Importing
jimport( 'joomla.filter.filteroutput' );
Source Body
function ampReplace( $text )
{
$text = str_replace( '&&', '*--*', $text );
$text = str_replace( '&#', '*-*', $text );
$text = str_replace( '&', '&', $text );
$text = preg_replace( '|&(?![\w]+;)|', '&', $text );
$text = str_replace( '*-*', '&#', $text );
$text = str_replace( '*--*', '&&', $text );
return $text;
}
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
Code Examples