0

I am trying to figure out the order in which PHP check types/object during runtime. So I can become a better coder. Thanks

Which type do php check first. Does it validate if a object is Boolean first? null? array?

which faster:

if (ID != null)

if (ID !== false)

if (ID == 0)
4

1 回答 1

2

这些是微优化。你的时间会花在更好地优化其他东西上。

我不确定这是否有任何比较,但请查看http://www.phpbench.com

此外,您可以查看http://php.net/manual/en/types.comparisons.phphttp://php.net/manual/en/language.operators.precedence.php,尽管它们没有给你基准。

同样,您的时间可能会花在优化其他内容上。

于 2012-08-30T21:35:52.263 回答