[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 __call($m, $a) {
   print "Method $m called:\n";
   var_dump($a);
   return $this->x;
  }
}

$foo = new Caller();
$a = $foo->test(1, "2", 3.4, true);
var_dump($a);
?> 

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to