Commit b9040a7cc4d9f051f00e3b0d9010971262319d84
- Diff rendering mode:
- inline
- side by side
classes/Memcached_DataObject.php
(11 / 0)
|   | |||
| 23 | 23 | ||
| 24 | 24 | class Memcached_DataObject extends DB_DataObject | |
| 25 | 25 | { | |
| 26 | /** | ||
| 27 | * Destructor to free global memory resources associated with | ||
| 28 | * this data object when it's unset or goes out of scope. | ||
| 29 | * DB_DataObject doesn't do this yet by itself. | ||
| 30 | */ | ||
| 31 | function __destruct() | ||
| 32 | { | ||
| 33 | $this->free(); | ||
| 34 | parent::__destruct(); | ||
| 35 | } | ||
| 36 | |||
| 26 | 37 | function &staticGet($cls, $k, $v=null) | |
| 27 | 38 | { | |
| 28 | 39 | if (is_null($v)) { |

