gpt4 book ai didi

php - php中如何将代码十进制值转换

转载 作者:行者123 更新时间:2023-12-01 19:38:40 26 4
gpt4 key购买 nike

我有带有Code Decimal的字符串并希望像这样转换:

当前刺痛:

24⃧ Guage Rake;

并想像这样转换:

24" Guage Rake

我已经尝试过这个但没有得到正确的结果:

$string = "hello&#8423";
htmlspecialchars_decode($string, ENT_NOQUOTES);

有什么想法吗?

谢谢

最佳答案

htmlspecialchars_decode() 仅更改一些字符,例如引号。

您需要使用html_entity_decode()反而。另外,"hello⃧" 缺少分号。应为 "hello⃧" "hello″"

试试这个:

header("Content-Type: text/plain; charset=UTF8");
$string = "hello″";
$string = html_entity_decode($string, ENT_NOQUOTES);
echo $string;

关于php - php中如何将代码十进制值转换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26731846/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com