1
0
mirror of synced 2025-01-08 10:07:10 +03:00
doctrine2/manual/codes/Working with objects - Dealing with relations - Retrieving related records.php

8 lines
120 B
PHP

<?php
print $user->Email['address'];
print $user->Phonenumber[0]->phonenumber;
print $user->Group[0]->name;
?>