getid3_riff::EitherEndian2Int() –
You appear to be a bot. Output may be restricted
Description
Usage
$int|float|false = getid3_riff::EitherEndian2Int( $byteword, $signed );
Parameters
- $byteword
- ( string ) required –
- $signed
- ( bool ) optional –
Returns
int|float|false
Source
File name: wordpress/wp-includes/ID3/module.audio-video.riff.php
Lines:
1 to 6 of 6
private function EitherEndian2Int($byteword, $signed=false) { if ($this->container == 'riff') { return getid3_lib::LittleEndian2Int($byteword, $signed); } return getid3_lib::BigEndian2Int($byteword, false, $signed); }