PHP unpack function
Like this blog? Consider exploring one of our sponsored banner ads...
unpack
(PHP 3, PHP 4, PHP 5)
unpack — Unpack data from binary stringDescriptionarray unpack ( string format, string data )
Unpacks from a binary string into an array according to the given
format.
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 /.
format
See pack() for an explanation of the format codes.
The packed data.
Return Values
Returns an associative array containing unpacked elements of binary
string.
Example 1. unpack() example
$array = unpack("c2chars/nint", $binarydata);
The resulting array will contain the entries “chars1″,
“chars2″ and “int”.
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.
pack()
About this entry
You’re currently reading “PHP unpack function,” an entry on BRADINO
- Published:
- 2.26.07 / 12am
- Category:
- PHP Functions
- Tags:
No comments
Jump to comment form | comments rss [?] | trackback uri [?]