Re: Call to a member function on a non-object?
From: Colin McKinnon (colin.deletethis_at_andthis.mms3.com)
Date: 07/13/04
- Next message: Erwin Moller: "Re: PHP framework Zope kind"
- Previous message: Undercat: "Re: register_global = on, mix between $_SESSION and local variables"
- In reply to: Oliver Spiesshofer: "Call to a member function on a non-object?"
- Next in thread: Perttu Pulkkinen: "Re: Call to a member function on a non-object?"
- Reply: Perttu Pulkkinen: "Re: Call to a member function on a non-object?"
- Reply: Oliver Spiesshofer: "Re: Call to a member function on a non-object?"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: Tue, 13 Jul 2004 09:06:05 +0100
Oliver Spiesshofer wrote:
> I am 'hacking' a bit on the opensource blog system Geeklog and while
> using a function of the code in another context, I get this error:
>
> Fatal error: Call to a member function on a non-object
>
> I think it would be too much here to go into detail where the error occurs
> exactly. Its while calling a custom error-handling function.
>
> what I would like to know is what this error-message means and what I can
> conclude from it so I can derive the problem
>
Like it says - your code has tried to treat something which is not an object
as if it were (typically by calling $not_an_object->method())
Either the object has not been instantiated or it was copied from something
else which was not an object.
This can also happen if serialize & store an object / change the class
definition and re-instate the object.
HTH
C.
- Next message: Erwin Moller: "Re: PHP framework Zope kind"
- Previous message: Undercat: "Re: register_global = on, mix between $_SESSION and local variables"
- In reply to: Oliver Spiesshofer: "Call to a member function on a non-object?"
- Next in thread: Perttu Pulkkinen: "Re: Call to a member function on a non-object?"
- Reply: Perttu Pulkkinen: "Re: Call to a member function on a non-object?"
- Reply: Oliver Spiesshofer: "Re: Call to a member function on a non-object?"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Relevant Pages
|