dongzi3434 2018-05-20 14:04
浏览 65
已采纳

Iconv在phpunit中返回错误的字符串

I have project in SF4 and use phpunit 6.5.8. I tested service that use iconv:

iconv('UTF-8', 'ASCII//TRANSLIT', $string)

When I use this service in application and when $string has value: "ąbć", returned is "abc" but when the same service is runed in phpunit returned is "?b?".

I don't understand why it don't work... Of course the test is negative but in application it works good.

  • 写回答

2条回答 默认 最新

  • dpbdl44228 2018-06-09 11:41
    关注

    Ok, I solved a problem. Php in CLI don't set locale. So we must set it before tests.

    1. Check location which you have in system:

    locale -a
    

    For example:

    $ locale -a
    C
    C.UTF-8
    en_US.utf8
    

    2. In the tests add:

    setlocale(LC_CTYPE, 'en_US.utf8');
    

    3. Example:

        public static function setUpBeforeClass()
        {
            setlocale(LC_CTYPE, 'en_US.utf8');
        }
    

    source:

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 java 的protected权限 ,问题在注释里
  • ¥15 这个是哪里有问题啊?