2021年09月03日 904 阅读 php php设计模式-单例模式 先来看一个简单的单例模式的例子class Single { static private $instance = null; // 禁止对象继承或者new 这个对象 pr...
2021年06月16日 722 阅读 php get_class()函数 get_class返回对象的类名,如果有命名空间会返回带有命名空间的完整类名。语法get_class ([ object $object = NULL ] ) : string参数object:...