PHPã§ã®ã·ã³ã°ã«ãã³ãã¿ã¼ã³
ã¾ãèªåã®å ´åã¯ããæ¸ãããªã
<?php class Klass { private function __construct() { } static function getInstance() { static $obj = null; return $obj ? $obj : $obj = new self; // 5.3以éãªã return $obj ?: $obj = new self; } } Klass::getInstance();
ãã¿å : http://blog.asial.co.jp/483