1
0
mirror of synced 2024-12-16 08:06:02 +03:00
doctrine2/manual/codes/Working with objects - Component overview - Collection - Saving the collection.php
2007-02-23 20:57:38 +00:00

10 lines
131 B
PHP

<?php
$users = $table->findAll();
$users[0]->name = "Jack Daniels";
$users[1]->name = "John Locke";
$users->save();
?>