1
0
mirror of synced 2025-02-23 23:53:14 +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;
?>