What are the disadvantages of using a PHP database class as a singleton?

后端 未结 4 1259
难免孤独
难免孤独 2020-12-11 01:57

What are the disadvantages of using a PHP database class as a singleton?

4条回答
  •  再見小時候
    2020-12-11 02:27

    It makes it hard to run unit tests against it and also makes it impossible to have multiple database connections. As we all know, global variables has lots of drawbacks and Singletons are no exception, only that they are a more "friendly" global variable.

    I found a pretty good article about it and an old SO question as well.

提交回复
热议问题