1
0
mirror of synced 2024-12-14 23:26:04 +03:00
doctrine2/manual/docs/Working with objects - Component overview - Collection - Accessing elements.php

18 lines
382 B
PHP
Raw Normal View History

2007-04-14 01:49:11 +04:00
You can access the elements of Doctrine_Collection with set() and get() methods or with ArrayAccess interface.
2007-04-14 01:49:11 +04:00
<code type="php">
$table = $conn->getTable("User");
$users = $table->findAll();
// accessing elements with ArrayAccess interface
$users[0]->name = "Jack Daniels";
$users[1]->name = "John Locke";
// accessing elements with get()
print $users->get(1)->name;
</code>