dongpian4954 2011-04-15 09:31
浏览 23
已采纳

如何使用外键关系从数据库中检索列?

I have user table which stores all his info and I also created a table called user_education through schema.yml [uid column in this table refers to uid of user table]. Model classes have been created using Symfony. I'm able to access all columns of user table. E.g. sf_user->getUser()->getUsername();.

User model class also has a method, getUserEducations(). I need to access a column called coursename of user_education table, but am unable to do so. Currently, I'm trying [ sf_user->getUser()->getUserEducations()->getCoursename(); ] But I'm getting the whole array of records. I can't retrieve a single column by that array.

How can I retrieve it?

  • 写回答

1条回答 默认 最新

  • douya6229 2011-04-15 14:07
    关注

    You can do this by:

    // get the first tuple
    $sf_user->getUser()->getUserEducations()->getFirst()->getCoursename();
    

    or

    // get the last tuple
    $sf_user->getUser()->getUserEducations()->getLast()->getCoursename();
    

    The proper way (if the user has many educations) is to iterate between the instances:

    foreach($sf_user->getUser()->getUserEducations() as $education){
        //do something with like
        echo $education->getCoursename();
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?