dongzhi4690 2014-11-08 18:01
浏览 182
已采纳

带有特殊字符的PHP strtolower(如:äüö)

I have problem in PHP converting a string to lowercase when it contains a special char, in this case especially umlauts as i'm dealing with names. The use case here is i'm searching for the name in an array in which the names allready existant in the database are put in lowercase (actually done by strtolower which works fine).

The Problem is, that converting to lower case fails for special characters, which is very strange as it works with the names from the database and in both cases the input is utf8. I even checked the encoding with mb_detect_encoding($name) first which returns UTF-8.

    // All names from the database are read into an array, mysql charset is utf8
    foreach($db_names as $namerow) {
        $name   = $namerow['lastname'] .' '. $namerow['firstname'];
        $allnames[strtolower($name)] = $namerow['id']; // works 
    }

    // Get data from a webservice which return utf-8 encoded data (i checked that)
    $data = ...;

    // Test the utf-8
    header('Content-Type: text/html; charset=utf-8');
    print_r($allnames); // everything is correct here
    var_dump(strtolower($data['name'])); // Output i.e. rÖmer - notice still uppercase char
    var_dump(mb_strtolower($data['name'])); // Output with strange ? character - r?mer
    var_dump(mb_detect_encoding($data['name'])); // Output: UTF-8
  • 写回答

1条回答 默认 最新

  • doumei8258 2014-11-08 18:07
    关注

    Call mb_internal_encoding first to tell the multibyte functions what encoding you want them to operate on:

    mb_internal_encoding('UTF-8');
    var_dump(mb_strtolower($data['name']));
    

    Or pass the encoding argument directly to mb_strtolower:

    var_dump(mb_strtolower($data['name'], 'UTF-8'));
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥30 win from 窗口最大最小化,控件放大缩小,闪烁问题
  • ¥20 易康econgnition精度验证
  • ¥15 msix packaging tool打包问题
  • ¥28 微信小程序开发页面布局没问题,真机调试的时候页面布局就乱了
  • ¥15 python的qt5界面
  • ¥15 无线电能传输系统MATLAB仿真问题
  • ¥50 如何用脚本实现输入法的热键设置
  • ¥20 我想使用一些网络协议或者部分协议也行,主要想实现类似于traceroute的一定步长内的路由拓扑功能
  • ¥30 深度学习,前后端连接
  • ¥15 孟德尔随机化结果不一致