duanchuli5647 2013-05-07 10:34
浏览 61
已采纳

PHP in_array忽略前导零

I have an array of 0845 numbers that is being searched via in_array for a specific numbers. For some reason, omitting the leading zero from the needle returns a false positive:

$numbers = array(
  '08451234567',
  '08452345678',
  '08453456789',
  '08454567890',
  ...
);

var_dump(in_array('08451234567', $numbers)); //(Boolean) TRUE - Right
var_dump(in_array('8451234567', $numbers)); //(Boolean) TRUE - Wrong

I have tried casting the values in the array as strings, but that did not work.

What is going on, and how do I fix it?

[edit]

Added quote around my needles

  • 写回答

3条回答 默认 最新

  • doufangxian4985 2013-05-07 10:37
    关注

    Use strict comparision

    bool in_array ( mixed $needle , array $haystack [, bool $strict = FALSE ] )

    Use

    var_dump(in_array("08451234567", $numbers,true)); //(Boolean) true - OK
    var_dump(in_array("8451234567", $numbers,true)); //(Boolean) false - OK
    

    Why

    var_dump(08451234567); // returns 0 because its octal 
    var_dump((int) "08451234567"); // returns 8451234567
    var_dump((float) "08451234567"); // returns  8451234567
    

    Only

    var_dump("08451234567" === "08451234567"); // returns true
    

    See Live Demo

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

报告相同问题?

悬赏问题

  • ¥15 目详情-五一模拟赛详情页
  • ¥15 有了解d3和topogram.js库的吗?有偿请教
  • ¥100 任意维数的K均值聚类
  • ¥15 stamps做sbas-insar,时序沉降图怎么画
  • ¥15 买了个传感器,根据商家发的代码和步骤使用但是代码报错了不会改,有没有人可以看看
  • ¥15 关于#Java#的问题,如何解决?
  • ¥15 加热介质是液体,换热器壳侧导热系数和总的导热系数怎么算
  • ¥100 嵌入式系统基于PIC16F882和热敏电阻的数字温度计
  • ¥15 cmd cl 0x000007b
  • ¥20 BAPI_PR_CHANGE how to add account assignment information for service line