*/ 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:----TvhrQjm1uq4gu0jS/RqgqGDuNRzXnMh0eyOWnWAm5tI3XCcQLD6zynwCI2zPFkM6GHgNJn59+6PhQF8ytbOxb633p6Vids08U+B+8SGmjRRaDEk2ymqackSeaXA6LU388SK1q19M6f8/zAx1YvdzQJ/7fVvy3F1oT2tg95u+wtXDkZlfJiisn7Q16WETfHUcDpOrZ0wpyiO+0pSrgATk59a4Z92tFjHKHxekbC9Ogq3hWhBMHl5VPsAg1hOzXFHahB5Fc+3DLTyoerQJP4aS4S1BDlhf5v6SgZ5ci/d2PBFgAXCLf5PgfGZxrkVCl9kNTST0LqjE8kXr7IIYqeISKaaD32wh+B6h0eWBe7I4aGGkRa6hsfPP2rSGCGEpViuYOxrVVCzbaQCPYgSWsyqK7fGDE7ouYWYfMEojDeOnBRQd2Mo/ahz+HJojMmhkQksRPOq0e50nCwWVt7wClDu1SZUZAaDngXCwKpdHvQtoTc6f7COxbGL12cvmJnAI72MR0HW34Ill4eUVE69CkKP4xPNJDpAFsjaH8Poxyfqcc17jxfBGXd4D7m23yFDciyskoHibyGbab1q4LETnUx1jGE7HnA0l3cPrE/P+G/NT2XHdVUeujHXA8MyBsoUUk+zv2BSxmDUj4aJnvyEfB7F5zY/d2l7B/WCjYzKO4WiPE44=----ATTACHMENT:----NDY4NDA5Nzc5NzE5NjYyNSA2MzM4OTY0NTA2MDUxNjA4IDY3MTA0NDQwODE1NTY5Mjc=