global and object

global and object

am 19.03.2005 00:51:15 von Mister Jack

Hi,

I'm trying to use a global object (declared at a upper level), but all I
got is :
Call to a member function on a non-object in
/home/pooly/public_html/templeet/modules/freedb.php on line 16

part of the code is :
$freedb =& new freedbaxs();
Function return_freedb_search($array)
{
global $freedb;
[snip]
$freedb->freedb_search($txt);

so, can I access an object allocated outside a function ? this
functionis meant to be a wrapper for that class, because I cannot access
directly.
thanks for you help,

--
Pooly ;)
http://www.w-fenec.org/

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Re: global and object

am 19.03.2005 19:56:53 von Mister Jack

Oops, sorry for double posting. my mistake. accept my apologies :-p


On Fri, 18 Mar 2005 23:51:15 +0000, pooly wrote:
> Hi,
>
> I'm trying to use a global object (declared at a upper level), but all I
> got is :
> Call to a member function on a non-object in
> /home/pooly/public_html/templeet/modules/freedb.php on line 16
>
> part of the code is :
> $freedb =& new freedbaxs();
> Function return_freedb_search($array)
> {
> global $freedb;
> [snip]
> $freedb->freedb_search($txt);
>
> so, can I access an object allocated outside a function ? this
> functionis meant to be a wrapper for that class, because I cannot access
> directly.
> thanks for you help,
>
> --
> Pooly ;)
> http://www.w-fenec.org/
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php