Hai,
eleganter wäre es, das Array gleich zu untergliedern
..oder gleich mit Objekten zu arbeiten. Somit spart man sich das ewige Nachschauen, welche Keys ein Array denn wohlmoeglich haben koennte.
class Office {
protected $name;
protected $Address; // reference object
public function GetName() {
return $this->name;
}
public function GetAddress() {
return $this->Address;
}
// [..]
}
class Address {
protected $street;
public function GetStreet() {
return $this->street;
}
}
// Aufruf
if( isset( $myOffice->GetAddress() )
echo $myOffice->GetAddress()->GetStreet();
MfG,
Sympathisant
--
"Only half the World is Teflon and Asbestos, the Rest is burnable"
"Only half the World is Teflon and Asbestos, the Rest is burnable"