gpt4 book ai didi

php - strtolower 因阿拉伯字符而失败

转载 作者:可可西里 更新时间:2023-11-01 00:06:20 24 4
gpt4 key购买 nike

我的网站允许用户使用阿拉伯文/英文名称注册

我正在尝试将用户的名字和姓氏转换为小写

我正在使用这个功能

$first_name = strtolower ( $_POST['first_name'] );

如果我尝试输入阿拉伯文名称,我会得到此编码 (ø¹ù„ø§ø¡)

亲 body 验

<?
echo 'مصر'; // return مصر
echo strtolower('مصر'); // return ø¹ù„ø§ø¡
?>

?>

最佳答案

您不能在 UTF-8 编码字符串上使用 strtolower,只能在 ISO 8859-1 上使用。使用 mb_strtolower() 代替。您还需要指定使用的编码,确保其设置正确(可能是 "UTF-8")。

<?
echo 'مصر'; // return مصر
echo mb_strtolower('مصر', 'UTF-8'); // return مصر
?>

关于php - strtolower 因阿拉伯字符而失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10639657/

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