不在对象上下文中时使用$ this?

时间:2013-11-17 01:45:41

标签: php pdo singleton

错误讯息:

  

致命错误:使用$ this时   不在class.db.php的对象上下文中 - 51

错误行:

            return $this->PDOInstance->prepare($sql, $driver_options);

代码:

class DB {   
        public $error = true; 

        private $PDOInstance = null;

        private static $instance = null;

        private function __construct()
          {
            try {

                $this->PDOInstance = new PDO('mysql:host='.HOST.';dbname='.DBNAME.';',
                                                    USER,
                                                    PASSWORD,
                                                    array(
                                                            PDO::ATTR_ERRMODE=>PDO::ERRMODE_EXCEPTION,
                                                            PDO::ATTR_DEFAULT_FETCH_MODE => PDO::FETCH_ASSOC
                                                            ));

                $this->PDOInstance->query("SET NAMES 'cp1251'");
            } 
            catch(PDOException $e) { 
                echo "error";
                exit();
            }
          }


        public static function getInstance()
        {  
            if(is_null(self::$instance))
            {
              self::$instance = new DB();
            }
            return self::$instance;
        }


        private function __clone() {
        }

        private function __wakeup() {
        }         

        public static function prepare($sql, $driver_options=array())
        {
            try {
                return $this->PDOInstance->prepare($sql, $driver_options);  /// ERROR in this line
            } 
            catch(PDOException $e) { 
                $this->error($e->getMessage());
            }
        }

         }

1 个答案:

答案 0 :(得分:0)

您在静态函数中使用$this$this指的是一个你没有的实例,它调用一个静态函数,因此就是错误。我不明白为什么你需要在单例类中使用非静态属性,但如果你坚持使用它们就是你可以做的事情

catch(PDOException $e) { 
    self::$instance->error = $e->getMessage();     
}