API15:JFilterOutput/ampReplace
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
Replaces & with & for xhtml compliance
Description:JFilterOutput/ampReplace
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; }
[Edit See Also] SeeAlso:JFilterOutput/ampReplace
Examples
<CodeExamplesForm />
