1
0
mirror of synced 2024-12-13 14:56:01 +03:00
doctrine2/manual/codes/Basic Components - Table - Finder methods.php

22 lines
347 B
PHP
Raw Normal View History

2006-07-24 01:08:06 +04:00
<?php
$table = $conn->getTable("User");
2006-07-24 01:08:06 +04:00
// find by primary key
2006-08-17 13:42:18 +04:00
$user = $table->find(2);
if($user !== false)
print $user->name;
2006-07-24 01:08:06 +04:00
// get all users
foreach($table->findAll() as $user) {
print $user->name;
}
2006-08-17 13:42:18 +04:00
// finding by dql
foreach($table->findByDql("name LIKE '%John%'") as $user) {
2006-07-24 01:08:06 +04:00
print $user->created;
}
?>