$value ) { $this->$key = $value; } } public function getState() { return array( "person" => $this->person, "birthday" => $this->birthday, ); } public static function __set_state( array $state ) { $birthday = new RelationTestBirthday(); foreach ( $state as $key => $value ) { $birthday->$key = $value; } return $birthday; } } ?>