1
0
mirror of synced 2024-12-15 23:56:02 +03:00
doctrine2/manual/codes/Working with objects - Dealing with relations - Updating related records.php
2007-02-23 23:04:15 +00:00

10 lines
174 B
PHP

<?php
$user->Email["address"] = "koskenkorva@drinkmore.info";
$user->Phonenumber[0]->phonenumber = "123123";
$user->save();
// saves the email and phonenumber
?>