dta38159 2017-05-08 20:23
浏览 471
已采纳

不能在PHP中使用不区分大小写的正则表达式

I cant make a working regexp in php. I'm using i flag at regexp pattern, but it doesnt make a effect on result of my script:

$page = "Test";
$page1 = "test";
var_dump(preg_match("#^test#i", $page));
// int(0)
var_dump(preg_match("#^test#i", $page1));
// int(1)

I really cant realize, where i made a mistake, please help.

  • 写回答

2条回答 默认 最新

  • douqin2108 2017-05-08 20:27
    关注

    If you want to check case-sensitive you have to remove the i:

    $page = "Test";
    $page1 = "test";
    var_dump(preg_match("/^test/", $page));  // int(0)
    var_dump(preg_match("/^test/", $page1)); // int(1)
    

    If you want to check case-insensitive you have to add the i:

    $page = "Test";
    $page1 = "test";
    var_dump(preg_match("/^test/i", $page));  // int(1)
    var_dump(preg_match("/^test/i", $page1)); // int(1)
    

    demo: http://ideone.com/Ab9nrs

    I tried your code on 3v4l.org and it looks good on the most PHP versions: https://3v4l.org/5UeCu

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

报告相同问题?

悬赏问题

  • ¥15 如何在scanpy上做差异基因和通路富集?
  • ¥20 关于#硬件工程#的问题,请各位专家解答!
  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 報錯:Person is not mapped,如何解決?
  • ¥15 c++头文件不能识别CDialog