1
0
mirror of synced 2024-12-14 15:16:04 +03:00
doctrine2/manual/docs/Working with objects - Dealing with relations - Retrieving related records.php

11 lines
335 B
PHP
Raw Normal View History

2007-04-14 01:49:11 +04:00
You can retrieve related records by the very same Doctrine_Record methods you've already propably used for accessing record properties.
When accessing related record you just simply use the class names.
2007-04-14 01:49:11 +04:00
<code type="php">
print $user->Email['address'];
print $user->Phonenumber[0]->phonenumber;
print $user->Group[0]->name;
</code>