. */ class User { public $id; public $accounts; public $categories; public $preferences; function GetCategory($id) { foreach($this->categories as $i => $category) if ($category["id"] == "$id") return $category; return ""; } function GetAccountName($id) { foreach($this->accounts as $i => $account) if ($account["id"] == "$id") return $account["name"]; return ""; } } ?>