Re: [PHP] Dynamically determine class

2005-09-14 Thread Norbert Wenzel
Thanks. Norbert -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Dynamically determine class

2005-09-14 Thread Jochem Maas
Norbert Wenzel wrote: Hi, I'm using PHP5 and try to do something like this: I have a base class called 'Entry' and a child class called 'ExtendedEntry'. I want to read all Entries to a certain topic from a database. While constructing the EntryObject I would like to look if Entry is a simp

[PHP] Dynamically determine class

2005-09-14 Thread Norbert Wenzel
Hi, I'm using PHP5 and try to do something like this: I have a base class called 'Entry' and a child class called 'ExtendedEntry'. I want to read all Entries to a certain topic from a database. While constructing the EntryObject I would like to look if Entry is a simple Entry or an Extended