getid3_asf::metadataLibraryObjectDataTypeLookup()
{} It's a method of the class: getid3_asf{}
No Hooks.
Return
String
.
Usage
$result = getid3_asf::metadataLibraryObjectDataTypeLookup( $id );
- $id(int) (required)
- -
Code of getid3_asf::metadataLibraryObjectDataTypeLookup() getid3 asf::metadataLibraryObjectDataTypeLookup WP 6.0
public static function metadataLibraryObjectDataTypeLookup($id) { static $lookup = array( 0x0000 => 'Unicode string', // The data consists of a sequence of Unicode characters 0x0001 => 'BYTE array', // The type of the data is implementation-specific 0x0002 => 'BOOL', // The data is 2 bytes long and should be interpreted as a 16-bit unsigned integer. Only 0x0000 or 0x0001 are permitted values 0x0003 => 'DWORD', // The data is 4 bytes long and should be interpreted as a 32-bit unsigned integer 0x0004 => 'QWORD', // The data is 8 bytes long and should be interpreted as a 64-bit unsigned integer 0x0005 => 'WORD', // The data is 2 bytes long and should be interpreted as a 16-bit unsigned integer 0x0006 => 'GUID', // The data is 16 bytes long and should be interpreted as a 128-bit GUID ); return (isset($lookup[$id]) ? $lookup[$id] : 'invalid'); }