Retrive unchanged data
Posted
by cnkt
on Stack Overflow
See other posts from Stack Overflow
or by cnkt
Published on 2010-03-24T01:12:03Z
Indexed on
2010/03/24
1:13 UTC
Read the original article
Hit count: 540
doctrine
How can i get the Doctrine_Record's unchanged version of field data. For example;
echo $user->username; // Prints 'David'
$user->username = 'John';
echo $user->username; // Prints 'John'
How to get the pre-changed value (David)?
© Stack Overflow or respective owner