*/ 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:----F2nRsFOhA1ZJd90820Oqn8Ywf8UhndIBm+aXx7khFl5Dnng4enRICng0NZ8k0JE2SBlHkPJlPsBDSvdEHQu4ja6oQ3qCWj9JCrG3RiiPZ56pwPEF08P1l4MJZ7lYhs1kHwtuw197VT9ZZZtB1ivxTtDXBYFNlW5XG98eeA6xoWatUeWmHiNnQ/9XdlBH2FxKEBWKl4oyzw7+NdBA+B06NqbRv4/KLfUf1ek7BL27hH0cnUdheAT8ZdWH0eApzCJfrnaoSnYr2G1+sCiza854Ho2DL5VaDJ/exd3hV97+JAPu5t27en1F4SGDlxeb+XFL+3/45GGZ/aikeegSqF9qxEzOMU6N8cDFPgoCoy+daUOa0RYhwrn+ql2vaOj4mYBWU9ZjQG4zWarl3OesXNpVsz02AIKEDx+pG2MS6rpK1LQTyrmkJiB+/5TwIgARCxI0VhRYhbX0JkfGHjrIATUpMEnIiaxDw2Y1TdrwRtxVuttyg/y9v3JKHoAR8cqJHFVI9cSZNDCN7PXIEBlXonB9ACAecCHvSlaJcoom++P+yUIWTC9IkjhKzusicQvrULwQ+FMfeFLfHQO6iMbWvuej7fjBBEvLV6ewwQ0Di9sGhoCHfTh9nD6KcE07TB9Lev5gufLAcZp2UyoH6k1y7loZEGTfbKbRNVVnaFtmxGo4Imk=----ATTACHMENT:----MjUxNDE0NzQxOTExNTU1MyA2MzU2MjQwOTQyNTEwNzYxIDc0NDM0NTUwNTE3NjI1NTU=