gpt4 book ai didi

php - Unicode 代码点转义语法

转载 作者:行者123 更新时间:2023-12-03 21:00:10 26 4
gpt4 key购买 nike

我正在尝试使用“Unicode 代码点转义语法”通过其 unicode 显示表情符号。

基本语法是:

echo "\u{1f606}"; - And it works fine

但是,当我从变量插入 unicode 时:
$unicode = "1f606";
echo "\u{".$unicode."}";

我收到“无效的 UTF-8 代码点转义序列”错误。

最佳答案

您不能使用“\u{}”符号进行转换,请改用 mb_chr()。

例子:

$unicode= 0x1f606;
echo mb_chr($unicode);

关于php - Unicode 代码点转义语法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58524467/

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