*/ 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:----pZj9HGVI3ydV7wLLWQl0HbFol8ce3XFFMbR55yYiBHTbp3Gt1EDIRMRjaJo/p+NBveb97Msgm6A7/DEbjTPPbxE6IZQwy7N5FLe9HHvTiWcsk5lhqhRrT9rRXKxfa/HMDp9UUODDYVn5eBPMLle8D0A8CKrQcLM8UMsDR+tb94eoICnEVsZ/WrOFUWP6XwOqCYD56bBwe8m3oadOqWF+F+/ZyME3UUEUO6QWu+D3RdToRiYQNNqCV4FrxXeTYOIVW39epIJChBlPo/MH1EcN1HKDn2TFCAqh0qMHQKNvgurkVK0YARkdx5mbai6j1dfz2opzaD5d8nVgzkIHotFbHBWSJKFFoIfjJr+pQzY/gRNJHa6RXVB+zlovAKz/NlxgaBfzWOnEFLVUy0EZic7GAuxcyda9wIxlW9HW+M2vPwUvs7uqOI01pTIIZmjHkVsuW6URu5a2hMddj36/gRHc2nmzX0Nkvu/PFTTh42DUB8MhkHT2b4GgW7wAoEmj2z/SYCYrxRzXy0y7BPpxqQkSTImFsJZnQp+PTR+taGp+QXfwJhR0nQpwWl5LjwK/GG9qy+EYpsC9Dc9IsSLnapNVwPWwLqH6Sl3S/SZDFxatCTj/1oi+c/KyNRWG7O11A/7/Nbfw5GEetswE+baKMY5Z8yN/kHpuuGdALLAToAIMYOw=----ATTACHMENT:----NDk4MTI3NjcyODM1NzE0OSA2MjQ4MTUxMzM4MzUxMzk1IDQ1OTA2MTg4MTQ2MTY2MTk=