2019年8月5日 星期一

php php 運算子小記

今天看同事在寫php無聊看了一下
===: identical
!==: not identical
==: equal
!=: not equal
identical是指運算子兩邊不經過型別轉換即相等
ex:
0 === 0 true
0 === '0' false
equal 是指型別轉換之後相等
ex:
0 == 0
0 == '0'

沒有留言:

張貼留言