Reads an array of 32-bit Integers from the Stream
Parameters
$count
intrequired- How many elements should be read
Source
public function readint32array( $count ) {
$bytes = $this->read( 4 * $count );
if ( 4 * $count !== $this->strlen( $bytes ) ) {
return false;
}
$endian_letter = ( 'big' === $this->endian ) ? 'N' : 'V';
return unpack( $endian_letter . $count, $bytes );
}
User Contributed Notes
You must log in before being able to contribute a note or feedback.