1
0
mirror of synced 2024-12-13 14:56:01 +03:00
doctrine2/manual/codes/Basic Components - Collection - Saving the collection.php
2006-07-23 21:08:06 +00:00

10 lines
131 B
PHP

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