RE: [PHP] __call and static methods

2004-09-28 Thread Jay Blanchard
[snip] Is there a way to get __call to work for static methods? It doesn't seem to work by default and the docs are pretty sparse. [/snip] http://us4.php.net/manual/en/language.oop5.static.php may help. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

RE: [PHP] __call and static methods

2004-09-28 Thread Jay Blanchard
[snip] Is there a way to get __call to work for static methods? It doesn't seem to work by default and the docs are pretty sparse. [/snip] Found a little more info http://us4.php.net/manual/en/language.oop5.overloading.php ?php class Caller { private $x = array(1, 2, 3); function

Re: [PHP] __call and static methods

2004-09-28 Thread Maciek Ruckgaber Bielecki
Hmm don't see clearly how could work for static methods :P On Tue, Sep 28, 2004 at 01:39:46PM -0500, Jay Blanchard wrote: [snip] Is there a way to get __call to work for static methods? It doesn't seem to work by default and the docs are pretty sparse. [/snip] Found a little more info

Re: [PHP] __call and static methods

2004-09-28 Thread Jackson Miller
So, now you have found the static method docs, and you have found the very minimal __call() docs but you have not come close to answering anything about using call with static methods. For those who seem to miss the point, a static method call would be like: $a = Caller::test(1, 2, 3.4, true); I

RE: [PHP] __call and static methods

2004-09-28 Thread Jay Blanchard
[snip] So, now you have found the static method docs, and you have found the very minimal __call() docs but you have not come close to answering anything about using call with static methods. [/snip] Sorry, I was just trying to help. -- PHP General Mailing List (http://www.php.net/) To

Re: [PHP] __call and static methods

2004-09-28 Thread Curt Zirzow
* Thus wrote Jackson Miller: So, now you have found the static method docs, and you have found the very minimal __call() docs but you have not come close to answering anything about using call with static methods. For those who seem to miss the point, a static method call would be like: $a