/ Published in: PHP
Expand |
Embed | Plain Text
< ? class SingleTon { private function __construct() { } public function getInstance() { if($instance === null) { $instance = new SingleTon(); } return $instance; } } ?>
You need to login to post a comment.
