使用静态属性实例化对象 由 群群 · 08/14/2010 使用 test::getInstance() 来获取对象。class test {protected static $handle; public function __construct() { ....} public static getInstance() { if(!self::$hanlde) { self::$hanlde = new test(); } return self::$hanlde;} ...} Share