|
unpackUnpack data from binary string Description
array unpack
( string
$format
, string $data
)
Unpacks from a binary string into an array according to the given
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 /. If a repeater argument is present, then each of the array keys will have a sequence number behind the given name. Parameters
Return ValuesReturns an associative array containing unpacked elements of binary string. Changelog
Examples
Example #1 unpack example
<?php The above example will output: Array ( [chars] => 4 [int] => 160 )
Example #2 unpack example with a repeater
<?php The above example will output: Array ( [chars1] => 4 [chars2] => 0 [int] => 40960 ) NotesCaution
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. Caution
If you do not name an element, numeric indices starting from 1 are used. Be aware that if you have more than one unnamed element, some data is overwritten because the numbering restarts from 1 for each element.
Example #3 unpack example with unnamed keys
<?php The above example will output: array(2) { [1]=> int(160) [2]=> int(66) } Note that the first value from the c specifier is overwritten by the first value from the n specifier. See Also
|