Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 558045
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T12:05:26+00:00 2026-05-13T12:05:26+00:00

This question is similar to this one but (literally) takes it to another level,

  • 0

This question is similar to this one but (literally) takes it to another level, or levels.

Background: I am using the Kohana PHP framework and, specifically, the ORM library.

Basically, when you loop through DB results with it, you can access the field values as properties of an object. Any joined tables can be accessed in a hierarchical manner. For example:

$users = ORM::factory('user')->with('city')->with('city:country')->find_all();
foreach ($users as $user) {
    echo "<p>{$user->name} ({$user->city->name}, {$user->city->country->name})</p>";
}

will output:

User 1 (City 1, Country 1)

User 2 (City 2, Country 1)

User 3 (City 2, Country 1)

User 4 (City 3, Country 2)

User 5 (City 4, Country 2)

etc.

Now, my question is: is there a way to access the hierarchical properties of an object for any number of levels. Ideally, I would like to do something like this:

$users = ORM::factory('user')->with('city')->with('city:country')->find_all();
$var2 = 'name';
$var2 = 'city->name';
$var3 = 'city->country->name';
foreach ($users as $user) {
    echo "<p>" . $user->{$var1} . "(" . $user->{$var2} . ", " . $user->{$var3} . ")</p>";
}

Is this possible in some simple way that I am missing?

Many thanks!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T12:05:26+00:00Added an answer on May 13, 2026 at 12:05 pm

    Try this:

    $users = ORM::factory('user')->with('city')->with('city:country')->find_all();
    $var1 = 'name';
    $var2 = 'city.name';
    $var3 = 'city.country.name';
    foreach ($users as $user) {
        $user = $user->as_array();
        echo "<p>" . Arr::path($user, $var1)  . "(" . Arr::path($user, $var2) . ", " . Arr::path($user, $var3) . ")</p>";
    }
    

    To understand what Arr:path does (taken from Kohana’s documentation):

    // Get the value of $array['foo']['bar']
    $value = Arr::path($array, 'foo.bar');
    

    EDIT:

    The above solution is for Kohana v3.
    For Kohana 2.3.4, see the third post on this page.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

(This question is similar to this one , but it's for using XMLHttpRequest instead
This question is similar to another one I asked , but whereas in that
My question is similar to this one but for Mercurial (converting using cvs2hg ).
This question is similar to this one, but with an extra wrinkle: Auto-removing all
My question is similar to this one but none of the answers solve my
my question is similar to this one , but I don't want to use
My question is similar to this one , but I would like to replicate
My question is similar to this one , but I can simplify it some.
The question is quite similar to this one , but I need to concentrate
My question popped up a very similar question, this one . But the accepted

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.