dongna1593 2018-05-14 18:37
浏览 85
已采纳

utf-8 Carbon格式的错误字符

I know there is much about this, but it doesn't work, I have the language installed.

locale -a | grep es
 es_ES
 es_ES.ISO8859-1
 es_ES.ISO8859-15
 es_ES.UTF-8

I have set to utf-8

\Carbon\Carbon::setUtf8(true);
setlocale(LC_ALL, 'es_ES.UTF-8');
$game_date = $date->formatLocalized('%A %d %B %Y %H %M %p');

I have the utf-8 tag in my html

<meta charset="utf-8">

but I am still getting the wrong characters.

"sábado" - "miércoles"

  • 写回答

1条回答 默认 最新

  • duandaiqin6080 2018-06-02 09:49
    关注

    I had the same problem when trying to use the sk_SK.UTF-8 locale. What helped me to solve the problem was to remove the \Carbon\Carbon::setUtf8(true); portion of the code.

    But why does it work like this? Firstly the Carbon documentation regarding the setUtf8 function says this:

    Some languages require utf8 encoding to be printed (locale packages that does not ends with .UTF8 mainly). In this case you can use the static method Carbon::setUtf8() to encode the result of the formatLocalized() call to the utf8 charset.

    Upon examining the source code for Carbon the formatLocalized() function calls utf8_encode() function from the PHP library if we previously set the variable utf8 to true with the already mentioned Carbon::setUtf8(true). Carbon source on GitHub

    return static::$utf8 ? utf8_encode($formatted) : $formatted;
    

    Because your locale is already configured to use the UTF-8 standard the further php encoding messes the formatted string up.

    I figured that if you want to use Carbon to format your strings to utf8 you must first get rid of the UTF-8 encoding when setting your locale with setLocale(). However, I would just stick to removing the Carbon function and using the proper locale.

    TL;DR

    Use correct locale with UTF-8 encoding e.g. es_ES.UTF-8 or use try to use locale without the UTF-8 encoding and rely on \Carbon\Carbon::setUtf8(true); and utf8_encode() function. I suggest the first option. Hope this helped :)

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
  • ¥15 Windows11, backspace, enter, space键失灵