整理的一个在phpchina的一个问题:1.用mysql_connect()函数建立一个单例类,比如:[code=PHP]classDB{privatestatic$db=NULL;privatefunction__construct(){;}publicstaticfunctionconn(){if(self::$db==NULL){self::$db=mysql_connect('localhost','root','****');}returnself::$db;}[/code]2...
查看全文