php中的字符格式
抱歉,我无法登录,声明 ID 有服务器问题(我通常是 Arthur Gibbs),
当出现奇怪的字符时,我的数据库中的数据当前会输出此信息...
这只是一个例子
我得到的:De√ilscrat™
我想要的是: De√ilscrat™
似乎有些字符正在被其他人的系统翻译成字符代码。
所以我想知道的是:
是否有一个函数可以扩展字符代码在字符串内?
转动FUNCTION(De√ilscrat™)
>>>>> De√ilscrat™
。
Sorry I can’t log in claim ID is having server issues (im normally Arthur Gibbs)
Data from my database currently outputs this when there are strange charecters...
This is just a example
What I get: De√ilscrat™
What I want: De√ilscrat™
It seems that some characters are being translated into character code by the other guys system..
So what I want to know is:
Is there a function that will expand charecter codes within a string?
Turning FUNCTION(De√ilscrat™)
>>> De√ilscrat™
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这个
√
东西看起来像一个 HTML 实体;所以,让我们尝试对其进行去实体化...这可以使用
html_entity_decode
函数,由 PHP 提供。例如,使用您提供的字符串,这里是一个代码示例:
我得到的输出是这个:
(第一个是原始版本,第二个是“解码”版本)
所以,这似乎可以解决问题;-)
This
√
stuff looks like an HTML entity ; so, let's try de-entitying it...This can be done using the
html_entity_decode
function, that's provided by PHP.For instance, with the string you provided, here's a sample of code :
And the output I'm getting is this one :
(First one is the original version, and second one is the "decoded" version)
So, it seems to do the trick ;-)