Its syntax is: string get_html_translation_table (int table)
The two tables that can be specified as input parameters to this function are:
HTML_ENTITIES
HTML_SPECIALCHARS
$string = "adsf";
$translate = get_html_translation_table(HTML_ENTITIES);
print strtr($string, $translate);
?>