getid3_riff::EitherEndian2Int

Advertisement

Private Access Private Access

This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.

Syntax Syntax

getid3_riff::EitherEndian2Int( string $byteword, bool $signed = false )

Parameters Parameters

$byteword

(Required)

$signed

(Optional)

Default value: false

Return Return

(int|float|false)

Source Source

File: wp-includes/ID3/module.audio-video.riff.php

	 *
	 * @return int|float|false
	 */
	private function EitherEndian2Int($byteword, $signed=false) {
		if ($this->container == 'riff') {
			return getid3_lib::LittleEndian2Int($byteword, $signed);

Advertisement

Advertisement

Leave a Reply