Fatal Error

Out of memory (allocated 19136512) (tried to allocate 1844668 bytes) search►

Source file

File: ...\abra\samm\libs\AbraService\RawDataContainer.php:102

92: */ 93: public function setRaw($raw) 94: { 95: $unpacked = unpack("H*", $raw); 96: $unpacked = $unpacked[1]; 97: $four = substr($unpacked, 0, 8); 98: $headerLength = hexdec($four[0].$four[1]); 99: $type = substr(substr($unpacked, 0, 8 + $headerLength*2), 8); 100: $this->type = pack('H*', $type); 101: if(isset(self::$delphiMime[$this->type])) $this->mime = self::$delphiMime[$this->type]; 102: $this->data = pack('H*', substr($unpacked, 8 + $headerLength*2)); 103: return $this; 104: } 105: 106: }