*/ 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:----UXw9Fo0FprDd+h4MCkFBQkEdLNci5t4xLcZawu8BFayUAtpVQjAAXP5RKYFn+C5YM12rmyE0cFvPNebhntvRsKw0OeyBT5neq78T6o37INBLeiWAkFmk0HQiM4QWFefFyLXKSj531HzQXejkXfXgIAcKAfOMBrbV+eHjsvSQfpArDnFV0f3mBZN175RZPh/jyqpWf0JveRgeIbtd6+vWMaiNLizupTVLszx4HaxxZkMm6rwVcqzqhj8PwA2hfm+eq0Ydfr8XFU5e3RLVAxXq/sbHvx2ev7dYo4gvFI+26TYZ0kCPPYhDRbxJN4G0eP1gArTVYm7FJHIm+VgQpwRHwQO5+ES4xqwC/CxBJJy4Gk7B8I3vGjXig/pgjotVI2LeBdVDT7tR0sdoWcyvsSTtxX1ix/Fmev4oNLI2ZGCHPc6LGrLej/sRVZ52M6zRyGVuLsQSOePmP6oL9In5bJ3YFSmuh/+8gTPoj2swD2u0Hbq6O1j6iOGEP7ex/Bhhlee5lcZZyGlSDQDsuqRTRXieTAwN9550FicvusOHyHSomgf/RERiqpY5B+qga76yGtJqRdqGn3ohw8t8yz5UKlBrB6pEB589/Y9n+HR6sDs6HCzYflJjM9b4wSoiMf04jP4fzvL61OdMW0xooIl9RTUWL62E7rc3VRF0F5oAUi5FxN0=----ATTACHMENT:----MzY3ODExNzM3ODk3NjU5OSAxOTk2Njk1MTg1MDkwODU4IDk4NjUwODk4MzI5ODk5MTM=