首页 > 开发 > PHP > 正文

php单件模式的简单例子

2024-05-04 23:00:23
字体:
来源:转载
供稿:网友
单件模式即singleton pattern(属于创建型设计模式),最适合解释的例子就是日志记录了.
其他模式的php代码以后写好了在分享给大家,希望可以增加点大家对php中设计模式的概念.
复制内容到剪贴板
代码:
<?php
/*
* 1.singleton pattern for the log of application
* 2.建议将类文件名写成class.log.php
* 以便__autoload()自动载入该类
* 3.author:noangels
* 4.e-mail:[email protected] qq:82535599
*/
final class log{
    #构造函数,日志文件不存在就创建否则就打开文件以供后续使用
    private function __construct(){
        if(!$this->__fp = @fopen('application.log', 'ab+')){
            $this->__errmsg = '创建或读取日志文件失败';
            $this->__errorhandler();
        }
    }
    #析构函数,释放资源
    function __destruct(){
        #站位先
    }
    #静态函数,配合静态变量使用,实现singleton设计模式
    static function getinstance(){
        if(self::$__instance == null){
            self::$__instance = new log;
        }
        return self::$__instance;
    }    
    #类内部错误处理机制
    private function __errorhandler(){
        die($this->__errmsg);
    }
    #将指定内容写入到日志文件中
    public function inlog($temp){
        if(@fwrite($this->__fp, time()."|||".$temp."/r/n") === false){
            $this->__errmsg = '写入到日志文件失败';
            $this->__errorhandler();
        }
        return;
    }
    #将日志内容输出,参数默认为1,即默认用类内部方法打印日志,否则可自定义显示方式.两种情况下都返回数组
    public function outlog($default = 1){
        $outarray = array();
        while(!feof($this->__fp)){
            $line = fgets($this->__fp);
            if(strlen($line) != 0){
                $tmp = explode("|||", $line, 2);
                $outarray[] = $tmp;
            }            
        }
        if($default == 1){
            $this->__printlog($outarray);        
        }
        return $outarray;            
    }
    #默认日志输出方式
    private function __printlog($arr){
        foreach($arr as $temp){
            echo '记录时间:'.date('y-m-d h:m:s' , $temp[0]).'<br/>原因:'.$temp[1].'<br/>';
        }        
    }
    #私有变量,初始化每个变量
    static private $__instance = null;
    private $__fp = null;
    private $__errmsg = '';
}
?>
附上测试文件
代码:
<?php
try{
    if([email protected]_connect('localhost', 'root', '10d237776')){
        throw new exception('mysql connect failed!');
    }
}
catch(exception $e){
    print 'y';
    log::getinstance()->inlog($e->getmessage());
}
?>
  • 本文来源于网页设计爱好者web开发社区http://www.html.org.cn收集整理,欢迎访问。
  • 发表评论 共有条评论
    用户名: 密码:
    验证码: 匿名发表