Lines Matching defs:memory
22 protected $memory = '';
88 * for memory efficiency.
266 * If $file is empty, the zip file will be created in memory
274 $this->memory = '';
507 * Returns the created in-memory archive data
516 return $this->memory;
520 * Save the created in-memory archive data
522 * Note: It's more memory effective to specify the filename in the create() function and
784 * Write to the open filepointer or memory
793 $this->memory .= $data;
805 * Write to the open filepointer or memory at the specified offset
814 $this->memory .= substr_replace($this->memory, $data, $offset);
838 return strlen($this->memory);