Mapping object relations - Dealing with relations - Updating related records.php 174 Bytes
Newer Older
doctrine's avatar
doctrine committed
1 2 3 4 5 6 7 8 9
<?php
$user->Email["address"] = "koskenkorva@drinkmore.info";

$user->Phonenumber[0]->phonenumber = "123123";

$user->save();

// saves the email and phonenumber
?>