您好,登錄后才能下訂單哦!
這篇文章給大家介紹怎么在PHP中利用單例模式實現防繼承和防克隆操作,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
具體如下:
<?php //單列模式 // //1.普通類 // class singleton{ // } // $s1 = new singleton(); // $s2 = new singleton(); // //注意,2個變量是同1個對象的時候才全等 // if ($s1 === $s2) { // echo '是一個對象'; // }else{ // echo '不是一個對象'; // } // //2.封鎖new操作 // class singleton{ // protected function __construct(){} // } // $s1 = new singleton();//PHP Fatal error: Call to protected singleton::__construct() // //3.留個接口來new對象 // class singleton{ // protected function __construct(){} // public static function getIns(){ // return new self(); // } // } // $s1 = singleton::getIns(); // $s2 = singleton::getIns(); // if ($s1 === $s2) { // echo '是一個對象'; // }else{ // echo '不是一個對象'; // } // //4.getIns先判斷實例 // class singleton{ // protected static $ins = null; // private function __construct(){} // public static function getIns(){ // if (self::$ins === null) { // self::$ins = new self(); // } // return self::$ins; // } // } // $s1 = singleton::getIns(); // $s2 = singleton::getIns(); // if ($s1 === $s2) { // echo '是一個對象'; // }else{ // echo '不是一個對象'; // } // //繼承 // class A extends singleton{ // public function __construct(){} // } // echo '<br>'; // $s1 = new A(); // $s2 = new A(); // if ($s1 === $s2) { // echo '是同一個對象'; // }else{ // echo '不是同一個對象'; // } // //5.防止繼承時被修改了權限 // class singleton{ // protected static $ins = null; // //方法加final則方法不能被覆蓋,類加final則類不能被繼承 // final private function __construct(){} // public static function getIns(){ // if (self::$ins === null) { // self::$ins = new self(); // } // return self::$ins; // } // } // $s1 = singleton::getIns(); // $s2 = singleton::getIns(); // if ($s1 === $s2) { // echo '是同一個對象'; // }else{ // echo '不是同一個對象'; // } // //繼承 // // class A extends singleton{ // // public function __construct(){} // // } // //Cannot override final method singleton::__construct() // echo '<hr>'; // $s1 = singleton::getIns(); // $s2 = clone $s1; // if ($s1 === $s2) { // echo '是同一個對象'; // }else{ // echo '不是同一個對象'; // } //6.防止被clone class singleton{ protected static $ins = null; //方法加final則方法不能被覆蓋,類加final則類不能被繼承 final private function __construct(){} public static function getIns(){ if (self::$ins === null) { self::$ins = new self(); } return self::$ins; } // 封鎖clone final private function __clone(){} } $s1 = singleton::getIns(); $s2 = clone $s1; //Call to private singleton::__clone() from context if ($s1 === $s2) { echo '是同一個對象'; }else{ echo '不是同一個對象'; }
關于怎么在PHP中利用單例模式實現防繼承和防克隆操作就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。