Source Code:
(back to article)
<?php $data = "\x01\x02\x03\x04\x05"; $result = unpack("C*", $data); print_r($result); ?>
Result:
Report an issue