User:
Password:

Home | New Examples | Popular | Top | Submit Examples | Request Examples

For example: Metaphors, hiatuses, adjectives, nouns,...
You are here: Examples10.com > Computer - Programming > PHP > Htmlspecialchars_decode PHP

Examples of Htmlspecialchars_decode PHP


Htmlspecialchars_decode PHP

Post by natttt
Posted on 2011-01-15 12:35:47
The htmlspecialchars_decode() function convert special HTML entities back to characters

string htmlspecialchars_decode ( string $string <, int $quote_style = ENT_COMPAT > )

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

The converted entities are: &amp;, &quot; (when ENT_NOQUOTES is not set), &#039; (when ENT_QUOTES is set), &lt; and &gt;.


Example of htmlspecialchars_decode() function:

<?php
$str = "Jane &amp; &#039;Tarzan&#039;";
echo htmlspecialchars_decode($str);
echo "<br />";
echo htmlspecialchars_decode($str, ENT_QUOTES);
echo "<br />";
echo htmlspecialchars_decode($str, ENT_NOQUOTES);
?>

The browser output of the code above will be:
Jane & "Tarzan"
Jane & "Tarzan"
Jane & "Tarzan"

If you select "View source" in the browser window, you will see the following HTML:
<html>
<body>
Jane & &#039;Tarzan&#039;<br />
Jane & "Tarzan"<br />
Jane & &#039;Tarzan&#039;
</body>
</html>




Is this example useful?
 (0%) YES    NO (100%)


To share this example, copy and paste this code into your website, blog or forum:


Comments
To leave a comment, you must register for free or if you are already registered log in.

Has not written any comments yet.


Related examples
Htmlspecialchars PHP Posted on 2011-01-15 12:38:54
The htmlspecialchars() function converts special characters to HTML entities string htmlspecialchars ( string $string ) The translations ...
Htmlentities PHP Posted on 2011-01-15 12:33:50
The htmlentities() function convert all applicable characters to HTML entities string htmlentities ( string $string ) This function is id...
Html_entity_decode PHP Posted on 2011-01-15 12:30:04
The html_entity_decode() function converts all HTML entities to their applicable characters. The html_entity_decode() function is the opposi...
Explode PHP Posted on 2011-01-15 12:26:14
The explode() function split a string by string into an array. array explode ( string $delimiter , string $string ) delimiter: The bounda...
Echo PHP Posted on 2011-01-15 12:22:55
The echo() function outputs one or more strings. void echo ( string $arg1 ) arg1: The parameter to output. Examples of echo function: ...
© 2010 Examples10.com · Compilation of examples, samples with definitions of all free   Legal Notice | Contact | Pending

eXTReMe Tracker