objectManager for PHP objectManager.class object update($object object)
Description Stores the updated object.
Parameters .
Return Values object.
Example use
<? require_once ("objectManager.class.php");require_once ("example.class.php");$obMan = new objectManager("example","manager/store/");$example = new example();$example->setName("example1");$example=$obMan->insert($example);$example->setName("Mr X ?");$example =$obMan->update($example);!--In reality you would loadthe stored object from file--! ?>
