|
Posted by KDawg44 on 11/11/28 12:00
On Jan 15, 9:29 pm, Jerry Stuckle <jstuck...@attglobal.net> wrote:
> KDawg44 wrote:
> > 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.
>
> No, there is no generic object in PHP. However, you don't need to
> specify what kind of object is being passed, i.e.
>
> function AMethod($obj) {
>
> will take anything (not just objects). And from there you can figure
> out what was passed.
>
> --
> ==================
> Remove the "x" from my email address
> Jerry Stuckle
> JDS Computer Training Corp.
> jstuck...@attglobal.net
> ==================
Thank you.... my brain is stuck in JAVA mode and i forgot you do not
have to declare what is being passed in!
Thanks!
[Back to original message]
|