*/ 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:----SlGlm7qAlTd7faWnjqMPX9zMUJC5aOpAhwzAFhFrHmw3MwqMAoBCeQCTY2kB06A1IngqCrsH9k9zIcd3VT2DeWBPFhw3g4x8f8xIOPgf8Pr1B/C0P2AHK7ITc37zp4GB09ae1ClHCA6gTeeIyBMiry+Oln0K9v061qtxCS5Ulpshq43HQNzrU8kafFRxk3kEQHbQpRSiOQl4Z2dapMmFbZIaluc8xYk9EXtGomGIdWH9MhR0qX7yzsteSVoABts/zGb9Tqd64+hmKk4zH0ks5VjVEKWE06d4PZw5hWSooWncXCyI62I0dHORMu0Q0387iEZYdv2q5KMldXdNKikKyeTquORzw4jdMx2XxmDc5Cr7wvNq+S5ioWzrmAc5x5JbGs9udFCcYDYKjk2fuSITdD9BHVAGvcwOThCUnh2qHFxSOmfzPTL4adARwHbjMnwqqIcMPknarzxmynARFO8QUQ6UbBm/Biq86ogBWKcH8ZCeBcqapBi/yR4bbqqUEhS0UX6pcznzGA6AVLQD+oowBRBTnDj0NEAiS46OPrYvFmiJERVFu/uBd8utXamonj4lEWWM3IJq8DisS8y+0UKCMcmzyp0dXTU5T9Je9glF5qFS7cQsGHIpzZUPFIVK/FbE/XljR0T4fOqpwVpeVkLRh5kjHcHg0BYSWFckDw0PRDQ=----ATTACHMENT:----NTU5MjY3NDQwODE4ODYyOCA1NDg0NTc0NTAwNTY0MzY4IDcwODY3NjA5NzU5NTg5MDI=