使用 PHP 将 html 个特殊字符转换为数字代码

Convert html special characters into numeric codes with PHP

假设我有一个 字符串 $a = "à"。 我想将其转换为 html 个实体。

$b = htmlentities($a); // à

相反,我希望将其转换为数字版本:"à" 我该怎么做?

扩展我的评论:看看http://php.net/manual/en/function.ord.php

$a = "à";
$b = ord($a); //224