Are exceptions in php really that useful?

后端 未结 9 2316
猫巷女王i
猫巷女王i 2021-02-08 14:48

3 days ago I started rewriting one of my scripts in OOP using classes as a practice after reading a lot about the advantages of using OOP.

Now I\'m confused weather I sh

9条回答
  •  醉话见心
    2021-02-08 15:46

    If all you need is to display error message, why don't you use

    catch (Exception $e)
    { print ($e->getMessage()); }
    

提交回复
热议问题