What is the difference between null and empty?

前端 未结 9 1481
一向
一向 2020-12-02 16:32

I am new to the concept of empty and null. Whilst I have endeavoured to understand the difference between them, I am more confused. I came across an article at http://www.tu

9条回答
  •  再見小時候
    2020-12-02 16:50

    Been awhile since i used PHP but if other languages are anything to go by empty will indicate an existing object/map/array that has no contents while null would indicate a variable that has no meaning/definition at all (uninitialised).

    In database SQL, NULL means "no value".

提交回复
热议问题