Jump to content

Fatal error:


raydona

Recommended Posts

Hi,
I have something like shown below:
 

class Anon
{
$_dddd = null;
.......
public function _construct()
{ $this->_dddd = DB::getInstance();
}
$check = $this->_dddd->get(.......)
.......
}
    class DB
    {
       private static $_instance = null;
       private $_pdo, $_query, $_error = false, $_results, $_count = 0;

       private function _construct()
       { try{ 
             $dsn = sprintf( "mysql:host=%s;dbname=%s;", 
                                Config::get('mysql/host'), 
                                Config::get('mysql/database')
                            );
             $this->_pdo = new PDO($dsn, 
                                   Config::get('mysql/username'), 
                                    Config::get('mysql/password')
                                );
        } catch(PDOException $excp){ 
            die($excp->getMessage());
        }
    }

       public static function getInstance()
       { if(!(self::$_instance))
         { self::$_instance = new self(); 
         }
         return self::$_instance;
       }

$_dddd is holding a SINGLETON object.
When I do above I get following message:
Fatal error: Call to a member function get() on a non-object

Can anyone point out the mistake(s) in my code and how to rectify it. Will be very grateful.

Link to comment
Share on other sites

If I would translate the error message to 'human error message':

You tried to call the method 'GET' on a variable... Normally, when you call a method with ->, it's for an object. But you tried to call it on a variable that is not an object.

It's hard to tell because your code isn't complete, but it probably comes from this line:

$check = $this->_dddd->get(.......)

It's the only place where you have a 'get'... My guess would be that _dddd is still null. And since 'null' is not an object and you try to call GET like if it was, that's probably why you get that error.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.