Re: [PHP] Re: Check class definition

2005-06-03 Thread Jochem Maas
Chris Boget wrote: You can use defined() to check to see if a constant has been defined. You can use function_exists() to see if a function has been defined. But what can you use to check to see if a class has been defined? class_exists() // and $is = class_exists($er, false); // suppre

Re: [PHP] Re: Check class definition

2005-06-03 Thread Chris Boget
> > You can use defined() to check to see if a constant has been > > defined. You can use function_exists() to see if a function > > has been defined. But what can you use to check to see if > > a class has been defined? > class_exists() I found that after it dawned on me to search for the phra