首页 > 语言 > PHP > 正文

php类,构造函数 静态变量实例

2024-09-04 11:43:40
字体:
来源:转载
供稿:网友

PHP实例代码如下:

  1. class dispatcher{ 
  2.  private $config
  3.  public static $o
  4.  function __construct(){ 
  5.   echo 'sss'
  6.  } 
  7.  public static function getinstance(){ 
  8.   if (!self::$o){ 
  9.    self::$o = new dispatcher(); 
  10.   } 
  11.   self::$o
  12.  } 
  13. new dispatcher(); 

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表