How can I do this Perl code in PHP?
print unpack ("H*", pack ("B*", "00000000100000012000000" ));
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Since pack/unpack in PHP doesn’t support the B type, you’ll have to use PHP’s other functions instead. In this case,
dechexandbindec.Edit: Or do it in a single function with base_convert: