duanfangbunao36970 2013-08-16 09:02
浏览 45
已采纳

怎么来的(' - '== 0)===是真的吗?

I was working here with some exploded string walks:

array_walk($data, function(&$value)
{
    // Transform numerics into appropriate type numbers
    if (is_numeric($value))
    {
        $value = substr_count($value, '.') == 1 ? (float) $value : (int) $value;
    }

    // Transform dashes into nulls
    if ($value == '-')
    {
        $value = null;
    }
});

to transform values into their appropriate types, and some special character handling.

Where I stumbled upon an interesting, huh, bug?

The Bug

I was amazed, that each entry, that had it's initial value as string(1) '0' ended up being a null.

At first, I thought that the problem relies in (float) and (int) typecasts, though, after debugging:

var_dump((float) '0', (int) '0');

I saw that's not the case, getting the expected result:

float(0)
int(0)

It took me a while, to attempt to debug the, what at the moment appeared to be an obvious, weak type check, but, once I did, I was shocked:

var_dump('-' == 0);

The above expression appears to be:

bool(true)

Now, while writing, I thought I should debug some more, so:

var_dump( '=' == 0 );
var_dump( 'What a lovely nonsense?' == 0 );
var_dump( 0 == 'DAFUQ?' ); // maybe it's because of order? It's PHP, world of miracles, you know...

And, every expression listed above is bool(true).

Okay, maybe that's because internally, mystically PHP casts the expression into a (bool)?

var_dump( (bool) '-' == 0 );

No:

bool(false)

So, so, so...

I made a test-case here: http://codepad.org/smiEvsDj
The problem exists in 5.2.5 (codepad), also in 5.4.3 (friend) and also in 5.4.17 (my actual environment).

What is the reason behind this feature / bug / what-the-F-actually-is-this?

  • 写回答

2条回答 默认 最新

  • douli6605 2013-08-16 09:12
    关注

    You have stumbled upon one of the major complaints that people have about PHP as a language: The fact that the "==" operator is not transitive.

    Any string "foo" == TRUE, because the PHP people wanted this to work:

    if ($string) {
        // do something if $string is set
    }
    

    Yet, converting a string to a number (which PHP always tries to do when you use "=="), "foo" == 0!

    Of course, TRUE != 0. That is a major pain when dealing with PHP, it's not logical, but it's reality.

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

报告相同问题?

悬赏问题

  • ¥15 Stata链式中介效应代码修改
  • ¥15 latex投稿显示click download
  • ¥15 请问读取环境变量文件失败是什么原因?
  • ¥15 在若依框架下实现人脸识别
  • ¥15 网络科学导论,网络控制
  • ¥100 安卓tv程序连接SQLSERVER2008问题
  • ¥15 利用Sentinel-2和Landsat8做一个水库的长时序NDVI的对比,为什么Snetinel-2计算的结果最小值特别小,而Lansat8就很平均
  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错