Browse Source

Added a function for forgetting a object when memory constraints apply.

pull/70/head
Nigel Banks 13 years ago
parent
commit
eb2e765e78
  1. 9
      api/fedora_item.inc

9
api/fedora_item.inc

@ -55,6 +55,15 @@ class Fedora_Item {
Fedora_Item::$instantiated_pids[$pid] = &$this;
}
}
/**
* Forget this Object, do manually when memory constraints apply.
*
* Removes this object from the static list of $instantiated_pids
*/
function forget() {
unset(Fedora_Item::$instantiated_pids[$pid]);
}
/**
* Exists

Loading…
Cancel
Save