Should I be using assert in my PHP code?

前端 未结 8 1569
执念已碎
执念已碎 2020-12-02 16:07

A coworker has added the assert command a few times within our libraries in places where I would have used an if statement and thrown an exception. (I had never even heard o

8条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-12-02 16:49

    Assert should only be used in development as it is useful for debugging. So if you want you can use them for developing your website, but you should use exceptions for a live website.

提交回复
热议问题