POMO_Reader::readint32array( integer $count )
Reads an array of 32-bit Integers from the Stream
Description Description
Parameters Parameters
- $count
-
(integer) (Required) How many elements should be read
Return Return
(mixed) Array of integers or false if there isn't enough data or on error
Source Source
File: wp-includes/pomo/streams.php
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 );
}
Expand full source code Collapse full source code View on Trac