Interesting question!
It appears, as of 4.04p1, php supports arrays of objects, as demonstrated by the following code...
<?
class foo {
function xyz ($a)
{
echo $a;
}
} // end of class
class bar {
function abc ($b)
{
echo $b;
}
}
$foo=new foo;
$bar=new bar;
$xx=array(
$foo,
$bar
);
echo $xx[0]->xyz('24, 25, 26');
echo $xx[1]->abc('1, 2, 3');
?>
I admit it, this is a brain-dead example, but it works.
-Ben