unpack
Syntax
array unpack(string format, string data);
Popis
Príkaz jazyka PHP
unpack - unpack data from binary string
Unpack from binary string into array according to format. Returns array containing unpacked elements of binary string.
Unpack works slightly different from Perl as the unpacked data is stored in an associative array. To accomplish this you have to name the different format codes and separate them by a slash /.
Note that PHP internally stores integral values as signed. If you unpack a large unsigned long and it is of the same size as PHP internally stored values the result will be a negative number even though unsigned unpacking was specified.
Príklad
$array = unpack("c2chars/nint", $binarydata);
/*
The resulting array will contain the
entries "chars1", "chars2" and "int".
*/
/*
The resulting array will contain the
entries "chars1", "chars2" and "int".
*/
Pozri aj
pack