gpt4 book ai didi

php - 如何在php中获取波斯语和阿拉伯语字符

转载 作者:行者123 更新时间:2023-12-04 08:02:35 25 4
gpt4 key购买 nike

我想从波斯字符中获取 Ascii 代码。
我的代码:

<?php
header ('Content-Type: text/html; charset=UTF-8');
$Char = "س"; // This is a Persian Character
echo ord($Char); // Output: 216
echo ord(utf8_encode($Char)); // Output: 195
// The Real Code Of This Character: 1587
?>

最佳答案

您可以使用 mb_ord()获取多字节字符的代码点:

$Char = "س"; // This is a Persian Character
echo mb_ord($Char); // Output: 1587

关于php - 如何在php中获取波斯语和阿拉伯语字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66381293/

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