如何在 PHP 中将 UTF8 字符转换为数字字符实体
是否可以使用 PHP 翻译以下代码?
下面的代码是用 JavaScript 编写的。它会在需要时返回带有数字字符引用的 html。前任。 smslån -> smslån
我未能成功创建翻译。 此脚本看起来可能有效,但返回 å
代表 å,而不是 å
,如下面的 javascript 所示。
function toEntity() {
var aa = document.form.utf.value;
var bb = '';
for(i=0; i<aa.length; i++)
{
if(aa.charCodeAt(i)>127)
{
bb += '&#' + aa.charCodeAt(i) + ';';
}
else
{
bb += aa.charAt(i);
}
}
document.form.entity.value = bb;
}
PHP 的 ord 函数 听起来和 charCodeAt,但事实并非如此。我使用 ord 得到 å 的 195 ,使用 charCodeAt 得到 229 。那,或者我遇到了一些非常困难的编码问题。
Is a translation of the below code at all possible using PHP?
The code below is written in JavaScript. It returns html with numeric character references where needed. Ex. smslån -> smslån
I have been unsuccessful at creating a translation. This script looked like it may work, but returns å
for å instead of å
as the javascript below does.
function toEntity() {
var aa = document.form.utf.value;
var bb = '';
for(i=0; i<aa.length; i++)
{
if(aa.charCodeAt(i)>127)
{
bb += '' + aa.charCodeAt(i) + ';';
}
else
{
bb += aa.charAt(i);
}
}
document.form.entity.value = bb;
}
PHP's ord function sounds like it does the same thing as charCodeAt, but it does not. I get 195 for å using ord and 229 using charCodeAt. That, or I am having some incredibly difficult encoding problems.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
mb_encode_numericentity
:Use
mb_encode_numericentity
: