JFilterOutput/linkXHTMLSafe: Difference between revisions
From Joomla! Documentation
m removing red link to edit, no existant pages |
m clean up |
||
| Line 2: | Line 2: | ||
This method processes a string and replaces all instances of & with & in links only | This method processes a string and replaces all instances of & with & in links only | ||
<! removed transcluded page call, red link never existed > | <! removed transcluded page call, red link never existed > | ||
| Line 39: | Line 37: | ||
</source> | </source> | ||
<! removed transcluded page call, red link never existed > | <! removed transcluded page call, red link never existed > | ||
Revision as of 14:00, 24 March 2017
Description
This method processes a string and replaces all instances of & with & in links only
<! removed transcluded page call, red link never existed >
Syntax
linkXHTMLSafe($input)
| Parameter Name | Default Value | Description |
|---|---|---|
| $input | $input String to process |
Returns
string Processed string
Defined in
libraries/joomla/filter/filteroutput.php
Importing
jimport( 'joomla.filter.filteroutput' );
Source Body
function linkXHTMLSafe($input)
{
$regex = 'href="([^"]*(&(amp;){0})[^"]*)*?"';
return preg_replace_callback("#$regex#i", array('JFilterOutput', '_ampReplaceCallback'), $input);
}
<! removed transcluded page call, red link never existed >
Examples
<CodeExamplesForm />