Convert binary string to binary string.
function bin2bin ($str) { $arr = unpack("Hout", $str); return decbin(hexdec($arr["out"])); }
string bin2bin -> string
Rating: 0 / 5 (0 votes) 4873 views
Want to share your source code? Create your account and join our community!
Comments
Add your comment