Posted by KDawg44 on 11/12/48 12:00
Hi,
I would like to have a function that takes a generic object and takes
some action on this. Something like,
function AMethod(Object obj) {
DoSomeStufftotheObject;
}
then be able to pass various object types in. Is there a way to do
this in PHP? Do classes automatically inherit from a generic Object
like in Java?
Thanks.
[Back to original message]
|