htmlentities2

Definition:
function htmlentities2($myHTML) {}

Convert entities, while preserving already-encoded entities.

Parameters

  • string $myHTML: The text to be converted.

Return values

returns:Converted text.

Source code

function htmlentities2($myHTML) {

	$translation_table = get_html_translation_table( HTML_ENTITIES, ENT_QUOTES );

	$translation_table[chr(38)] = '&';

	return preg_replace( "/&(?![A-Za-z]{0,4}\w{2,3};|#[0-9]{2,3};)/", "&", strtr($myHTML, $translation_table) );

}

1955

No comments yet... Be the first to leave a reply!

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: