Maison > Article > développement back-end > Méthode singleton d'instanciation d'objet PHP
Méthode PHP pour instancier un objet singleton :
Trois privés et un public : 2 méthodes privées, 1 propriété privée, 1 méthode publique
private function __construct(){} //不可以继承构造方法 private function __clone(){}//不可以继承克隆方法 privare static $_instance;
一公
public static function getinstance(){ if(!isset(static:$_instance)){ static::$_instance=new static(); } return static::$_instance; }
Ce qui précède est l'intégralité du contenu de cet article. J'espère que le contenu de cet article pourra apporter une certaine aide aux études ou au travail de chacun. J'espère également prendre en charge PHP. Chinois net!
Pour plus d'articles liés aux méthodes singleton d'instanciation d'objet PHP, veuillez faire attention au site Web PHP chinois !