function:html_entity_decode ( string, style, charset );
return type:string
content:ใช้แปลงรหัสอักษรของภาษา html ให้เป็นเครื่องหมายพิเศษตามปกติ
เช่นจาก "<" เป็น "<"
example:$string = htmlentities ( "<b>bamboo</b>" );
echo html_entity_decode ( $string );
comment:style คือรูปแบบการเปลี่ยนเครื่องหมายคำพูด
ถ้า style = ENT_COMPAT คือกำหนดให้แปลงเครื่องหมาย double quote แค่คง single quote ไว้ ( default )
ถ้า style = ENT_QUOTES คือกำหนดให้แปลงทั้งเครื่องหมาย double quote และ single quote
ถ้า style = ENT_NOQUOTES คือกำหนดไม่ให้แปลงทั้งเครื่องหมาย double quote และ single quote
charset default คือ ISO-8859-1