1
0
mirror of synced 2025-01-25 17:51:39 +03:00
doctrine2/manual/codes/Working with objects - Dealing with relations - Retrieving related records.php

8 lines
120 B
PHP
Raw Normal View History

2006-07-23 21:08:06 +00:00
<?php
print $user->Email['address'];
2006-07-23 21:08:06 +00:00
print $user->Phonenumber[0]->phonenumber;
print $user->Group[0]->name;
2006-07-23 21:08:06 +00:00
?>