i am trying to get the contents of another class object into php code. a class object contains
$Raiwind = new gridcell();
$Raiwind->place="raiwind";
$Raiwind->latitude="31.4279";
$Raiwind->spatial[] = array(
array('lda','31.4104',3),
array('ali','31.3998',3),
array('multan','31.4675',10));
$Raiwind->temporal[]=array(
array('lda',00.04),
array('ali',00.06),
array('multan',00.26),
array('dha',00.33));
$Raiwind->taxi=array(array(8899, 15.56));
now in another web page i am trying to get the taxi array contents matched with $raiwind. how to code that.