Working with objects - Component overview - Collection - Deleting collection.php 123 Bytes
Newer Older
doctrine's avatar
doctrine committed
1 2 3
<?php
// delete all users with name 'John'

4
$users = $table->findByDql("name LIKE '%John%'");
doctrine's avatar
doctrine committed
5 6 7

$users->delete();
?>