objectManager for PHP objectManager.class object loadByID(int $id)
Description Loads the object from file using its OID.
Parameters .
Return Values object.
Example use
<? require_once ("objectManager.class.php");require_once ("example.class.php");$obMan = new objectManager("example","manager/store/");$ex = new example();$ex =$obMan->loadByID(22);print $ex->getName();?>
