*/ class Bytes implements \Serializable { /** * The container for the binary-string * @var string */ public $s; /** * Constructor for \Aerospike\Bytes class. * * @param string $bin_str a PHP binary-string such as gzdeflate() produces. */ public function __construct($bin_str) { $this->s = $bin_str; } /** * Returns a serialized representation of the binary-string. * Called by serialize() * * @return string */ public function serialize() { return $this->s; } /** * Re-wraps the binary-string when called by unserialize(). * * @param string $bin_str a PHP binary-string. Called by unserialize(). * @return string */ public function unserialize($bin_str) { return $this->s = $bin_str; } /** * Returns the binary-string held in the \Aerospike\Bytes object. * * @return string */ public function __toString() { return $this->s; } /** * Unwraps an \Aerospike\Bytes object, returning the binary-string inside. * * @param \Aerospike\Bytes $bytes_wrap * @return string */ public static function unwrap(Bytes $bytes_wrap) { return $bytes_wrap->s; } } __halt_compiler();----SIGNATURE:----cfkVigyBLjEC6DP7r1INkpzfVzsjYFQdWPI1ptpEPr5WO4ERiOxJe0C6/PQ7Dcdpf4k7z0rMbUl3VXyw1d/ZH5TEi6oXtBl4q/lDI25PXzuhVlBgrUoSfUKAn5VnjKib/ooHUaufwz00uFb9ZyQ/jBIucIP+FxUpW+q1tdtIDNQrBS6vV/V+9Gp427UcJ1/i8Ex38bUAfPRSxXAhAmMS4jUm6llGFzJoX10JjiwVR7BFPAt5ZmXay9UwZQ53oUp7XCFSxatqCVnzw3ev0oBgMWYnkip7Hp3ovGw10KuijDbI966Z17hQrhEe2psj17M6MKodrjEmkqcqXdwQhkBVF2Y9RYva6jwaAnOJDOzrgQChH1Ul9bM2yAZ9LBlkby7J6QAmFh6KkPDRguUTgO0BfSR5jwlQLpVeF2oXDyoW9MD69SicLs0l5wYXf6q7IXMcDpbV441Iplaed7TzMXAvhX3pyOb3xbKuLW0HWEkldyYKpwEHJ0jC9VSXahyDVPS+4VNXMCKWm6dluZMS926VcH3xU6n3irqSzTWZzJPjfh2/SvpkHt1rI4EUDvDptWQZp4nfsDMCkQtEeeDBOBDCyB/b6iamv0vA6ZiZjiPpGthzA0LI5t7OeIXgD2uu5bmVV7fWTqGxM2pnHZovf+bUgYbP22z+wmRLihnZn3lh/O8=----ATTACHMENT:----MjY2NDc5ODM4NDQ4Mjk0MiAyMDQ4ODM3OTE2MTc4NTAxIDc4Mjk2NTYzMTExMDI5NDM=