Exibir a lista drop-down

pack()

« ord | parse_ini_string »
<?php
$string 
pack (
    
// string $format
    
// mixed $args1
    
// mixed $args2
    
// mixed $args3
    
// mixed $args4
    
  // [mixed $args]
);

// shows the result in hexadecimal
$hex bin2hex($string);
?>
resultado
$string = '4xVAB'
$hex = '123478564142'
Exemplos
#1 pack  ("nvc*",
 
0x1234,
 
0x5678,
 
65,
 
66)
Veja também
bin2hex, unpack