Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
PHP でこの Perl コードを実行するにはどうすればよいですか?
print unpack ("H*", pack ("B*", "00000000100000012000000" ));
PHP の pack/unpack は B タイプをサポートしていないため、代わりに PHP の他の関数を使用する必要があります。この場合、dechexおよびbindec.
dechex
bindec
echo dechex( bindec( "00000000100000012000000" ));
編集: または、base_convert を使用して単一の関数で実行します。
echo base_convert("00000000100000012000000", 2, 16);