1
0
mirror of synced 2024-12-14 15:16:04 +03:00
doctrine2/manual/codes/Working with objects - Component overview - Record - Checking existence.php
2007-02-23 20:57:38 +00:00

11 lines
143 B
PHP

<?php
$record = new User();
$record->exists(); // false
$record->name = 'someone';
$record->save();
$record->exists(); // true
?>