Voting

: two minus one?
(Example: nine)

The Note You're Voting On

Anonymous Coward
17 years ago
Warning: This unpack function makes the array with keys starting at 1 instead of starting at 0.

For example:
<?php
function read_field($h) {
$a=unpack("V",fread($h,4));
return
fread($h,$a[1]);
}
?>

<< Back to user notes page

To Top