htmlspecialchars_decode

(PHP 5)

htmlspecialchars_decode --  Convert special HTML entities back to characters

Beschreibung

string htmlspecialchars_decode ( string string [, int quote_style] )

This function is the opposite of htmlspecialchars(). It converts special HTML entities back to characters.

The converted entities are: &, " (when ENT_NOQUOTES is not set), ' (when ENT_QUOTES is set), < and >.

Parameter Liste

string

The string to decode

quote_style

The quote style. One of the following constants:

Tabelle 1. quote_style constants

Constant NameDescription
ENT_COMPATWill convert double-quotes and leave single-quotes alone (default)
ENT_QUOTESWill convert both double and single quotes
ENT_NOQUOTESWill leave both double and single quotes unconverted

Rückgabewerte

Returns the decoded string.

Beispiele

Beispiel 1. A htmlspecialchars_decode() example

<?php
$str
= '<p>this -&gt; &quot;</p>';

echo
htmlspecialchars_decode($str);

// note that here the quotes aren't converted
echo htmlspecialchars_decode($str, ENT_NOQUOTES);
?>

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

<p>this -> "</p>
<p>this -> &quot;</p>

Siehe auch

htmlspecialchars()
html_entity_decode()
get_html_translation_table()

Hosting by: Hurra Communications GmbH
Generated: 2007-01-26 17:57:15