Re: [PHP] PHP5: __call() implementation

2004-02-05 Thread Adam Bregenzer
On Thu, 2004-02-05 at 09:22, Vivian Steller wrote: > i want this function simply call the method of another class with > "SomeClass::$method(...)" but i'm getting into trouble (bit heavy > programming!:) passing the arguments (stored as Array in $params) to the > "SomeClass::$method([arguments])" m

Re: [PHP] PHP5: __call() implementation

2004-02-05 Thread John W. Holmes
From: "Vivian Steller" <[EMAIL PROTECTED]> > i want this function simply call the method of another class with > "SomeClass::$method(...)" but i'm getting into trouble (bit heavy > programming!:) passing the arguments (stored as Array in $params) to the > "SomeClass::$method([arguments])" method..

[PHP] PHP5: __call() implementation

2004-02-05 Thread Vivian Steller
Hello, as you know there is a new callback function __call($method, $params) in php5. the __call() method of an object is called, if the method named $method is not declared in this class. i want this function simply call the method of another class with "SomeClass::$method(...)" but i'm getting