Skip to content

Instantly share code, notes, and snippets.

View noname007's full-sized avatar
📖
Focusing

soul11201 noname007

📖
Focusing
View GitHub Profile
@noname007
noname007 / singletone.php
Created February 11, 2015 09:10
php 单例模式代码-----
class Singletone{
private static $obj=null;
private function __construct(){}
static function getInstance()
{
if(is_null(self::$obj))
{
echo 111111111,'------';