dsmvqp3124 2018-08-03 09:07
浏览 37

以ASCII格式转换UTF-8重音符号

I saw there are different discussion on this subject and I did find some solutions, but I still can't fix the accent problem.

I have a text in Italian, we have some letters with accents (à, è, é, ì, ò and ù), this text gets sent in a file over to another website and this has to be in ASCII format, this is what I'm currently doing:

$res_to_write = "Non c'è più l'oblò, è lì o là?" //DEMO TEXT
$resfile = iconv("UTF-8", "US-ASCII//TRANSLIT", $res_to_write);

The result is in ASCII, which is good but it gets converted to:

Non c'e piu l'oblo, e li o la?

Which is completely wrong in Italian.

Do I have to make a replace of every accent like è => e' (single quote) so at least looks ok or there is another solution to this?

  • 写回答

1条回答 默认 最新

  • dongwende1984 2018-08-08 10:51
    关注

    As of now I don't have other solutions other than replace it with an apostrophe:

    $res_to_write = "Non c'è più l'oblò, è lì o là?" //DEMO TEXT
    $res_to_write = str_replace(['à', "è", "é", "ì", "ò", "ù"], ["a'", "e'", "e'", "i", "o'", "u'"], $res_to_write);
    $resfile = iconv("UTF-8", "US-ASCII//TRANSLIT", $res_to_write);
    
    评论

报告相同问题?

悬赏问题

  • ¥60 版本过低apk如何修改可以兼容新的安卓系统
  • ¥25 由IPR导致的DRIVER_POWER_STATE_FAILURE蓝屏
  • ¥50 有数据,怎么建立模型求影响全要素生产率的因素
  • ¥50 有数据,怎么用matlab求全要素生产率
  • ¥15 TI的insta-spin例程
  • ¥15 完成下列问题完成下列问题
  • ¥15 C#算法问题, 不知道怎么处理这个数据的转换
  • ¥15 YoloV5 第三方库的版本对照问题
  • ¥15 请完成下列相关问题!
  • ¥15 drone 推送镜像时候 purge: true 推送完毕后没有删除对应的镜像,手动拷贝到服务器执行结果正确在样才能让指令自动执行成功删除对应镜像,如何解决?