This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Singletone{ | |
private static $obj=null; | |
private function __construct(){} | |
static function getInstance() | |
{ | |
if(is_null(self::$obj)) | |
{ | |
echo 111111111,'------'; |
NewerOlder