News:

Dolphin Computers Ltd., is a leading IT product and service provider company in Bangladesh.

Main Menu

Decode HTML entities from the Strings

Started by bbasujon, January 22, 2012, 07:43:44 AM

Previous topic - Next topic

bbasujon

Sometimes we need to decode HTML entities from any specific strings in PHP. Basically it's more used for retrieve HTML entities from a MySQL cell.? To Convert all HTML entities to their applicable characters there is one function available that is called html_entity_decode().

html_entity_decode($YourStrings)

Example:

<?php
$orig?=?"I'll?\"love\"?the?girl very much";

$a?=?htmlentities($orig);

$b?=?html_entity_decode($a);

echo?$a;?//?I'll?&quot;love&quot;?the?&lt;b&gt;girl&lt;/b&gt; very much

echo?$b;?//?I'll?"love"?the?girl very much?>
Acquire the knowledge and share the knowledge so that knowing,learning then sharing - all are the collection