Display the drop-down list

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);
?>
Result
$string = '4xVAB'
$hex = '123478564142'
Examples
#1 pack  ("nvc*",
 
0x1234,
 
0x5678,
 
65,
 
66)
See also
bin2hex, unpack