Ben bu Perl kod PHP nasıl yapabilirim?
print unpack ("H*", pack ("B*", "00000000100000012000000" ));
PHP paketi / paket açma B türünü desteklemiyor beri, yerine PHP'nin diğer fonksiyonları kullanmak gerekecek. Bu durumda, dechex
and bindec
a>.
echo dechex( bindec( "00000000100000012000000" ));
Düzenleme: Ya base_convert ile tek işlevi bunu:
echo base_convert("00000000100000012000000", 2, 16);