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)