1
0
mirror of synced 2024-12-13 14:56:01 +03:00
doctrine2/manual/codes/Mapping object relations - Dealing with relations - Retrieving related records.php
2006-07-23 21:08:06 +00:00

8 lines
127 B
PHP

<?php
print $user->Email["address"];
print $user->Phonenumber[0]->phonenumber;
print $user->Group[0]->get("name");
?>