wpseek.com
Bazujące na WordPress narzędzie wyszukiwania dla deweloperów i twórców motywów.



htmlentities2 › WordPress Function

Od1.2.2
Przestarzałyn/a
htmlentities2 ( $text )
Parametry:
  • (string) $text The text to be converted.
    Wymagane: Tak
Linki:
Powrót:
  • (string) Converted text.
Zdefiniowane na:
Codex:

Converts entities, while preserving already-encoded entities.



Źródło

function htmlentities2( $text ) {
	$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( $text, $translation_table ) );
}