*/ 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:----h5fA3br4N35l6bJDSU58MHbwS1jC6Kmw1/HmmUUJkgYaG4bYGpXC6S9laLiEFEHDjsOjfd4tPLQUjll83fIDahO+ixqV3rgtaoom4zblcHsMRMkBte7y3mMlyBoXctWjY8ug8lL4RzX3LjoIi5txAMOY3htO63a/mC1CInHlZrTw8J7HHM7iBYOTxjylwGfdPbK22+hYE39EKj+pO/M2wAWeY031L1Iqz1UraEvR0iWF9EzXYsXuHYWAhRFu5ifykhrVjJOP+W/MI3GxHQVpmm7IRw9GNUKZAY/eA46JVuudV3Z9x1ujDyTQhBWGohbMRy3L/Qg7MqeMXtizMOGtbYIWz1BjZyXZaSjqjzqG5pOkHjzC3YYsU4RDLiO2q/U2b6eLtZnJX+uYL798+HZqj84PXLeDsJabQnqD3v1/JNm9opKl6h32UzXCsBjucgY2ZFKSj2WXwZ2F9Hw2XjgHmlxGQSq+OzvWq34f1Mcon5ZWr45cFs0wEZND+SZ3LqJfv+YlHYCAmJjn6a19pi7WaCMMd11yTu0U/lDB3rxaOSxEwd/faVXLoktjMthuLyddf9XKyxp66hMUx66+DEIWP+V1cyjq2luQS2JsxADS44m0tXPevuFwH7llXOCHWxOGfA+httA/jmaLcPbbAy+LfANVp+eVBXsL3ZcKTIhfstc=----ATTACHMENT:----Njk3NzE4ODE1OTE1MTUxMSAzMzMwNzc3MTcwNTE2NTMyIDkxMzkxNjk1MzMwMzIzODc=