• Модуль: security
  • Путь к файлу: ~/bitrix/modules/security/classes/general/html_entity.php
  • Класс: CSecurityHtmlEntity
  • Вызов: CSecurityHtmlEntity::decodeCb
static function decodeCb($entity)
{
	$ad = $entity[2];
	if($ad == ';')
		$ad="";
	$num = intval($entity[1]);
	return chr($num).$ad;
}