*/ 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:----ldngRcZiEYPcEvlNFRevGnzZgV7LskforVBTfqgGvTG6vHIT+wI9bYQHSKWGFeN4NHa773+twyCBvypc4ZSbNn/N4pEyCQmznZBwBcOP4HFO8l4t9/wCiA48tInXWHrjxdt0Pvb9nJikraB67ZgAb874oHHcZMM4+pECooBtmiObM1v+QeRrdB0FGAsMe5ojAWSnmq9Bf/o436aLgm0iI3Z7vIiJuI0wkH/K58vAeKSPBBlleoTOOUxhPXhKKG2b9MKKlFL9LjuxwCp/q1fszGnHqyJKeRR0sOG8Eq2W04l2NaWmrNUDDyPEvI4w94IGR9eAed1cJCtEdb5PHqwC1sRKia5u1uvoehHDodqKBwXl2BA5MZ0i3tmQ8AL7fJLPQtgEtHcUNwf2T65SwPuubo8YASGkd3iyGtTB3wKF4APBGLk3YPelhfueogeNrPThV75KMaiRpWmAif4/GotutYH/Epk2cVASGE2MzZHxk8R0NRAUHIcv7AKhim/0bUkpB13do8o6LNW34y00/F9HmhRanSR3A0qxzF6NgEHPfMwFjWaXPdT/nEoKjRYWO3aT+yTcOGDD8cTRF1Q4OXrgDfGypQqyb7RMGyDKHlS/Q0XuTpji7bTVRZ6+gX5xmJGH+E8S06s4oDyk5svxTcvcRhd0OE3EpMkd4Eqrd7OKT44=----ATTACHMENT:----MjUyODY1ODYwMjMyNDk0MiAxNDk3NzUyODgzMTY1ODkyIDc2ODUzNDkyOTQ1MTExMDc=