Russian Ukraine English
Catalog RSS


htmlentities

(PHP 3, PHP 4 )

htmlentities -- Convert all applicable characters to HTML entities

Description

string htmlentities (string string [, int quote_style])

This function is identical to htmlspecialchars() in all ways, except that all characters which have HTML character entity equivalents are translated into these entities. Like htmlspecialchars(), it takes an optional second argument which indicates what should be done with single and double quotes. ENT_COMPAT (the default) will only convert double-quotes and leave single-quotes alone. ENT_QUOTES will convert both double and single quotes, and ENT_NOQUOTES will leave both double and single quotes unconverted.

At present, the ISO-8859-1 character set is used. Note that the optional second argument was added in PHP 3.0.17 and PHP 4.0.3.

See also htmlspecialchars() and nl2br().

Led