getid3_id3v2::LookupExtendedHeaderRestrictionsTextFieldSize() –

You appear to be a bot. Output may be restricted

Description

Usage

$string = getid3_id3v2::LookupExtendedHeaderRestrictionsTextFieldSize( $index );

Parameters

$index
( int ) required

Returns

string

Source

File name: wordpress/wp-includes/ID3/module.tag.id3v2.php
Lines:

1 to 9 of 9
  public function LookupExtendedHeaderRestrictionsTextFieldSize($index) {
    static $LookupExtendedHeaderRestrictionsTextFieldSize = array(
      0x00 => 'No restrictions',
      0x01 => 'No string is longer than 1024 characters',
      0x02 => 'No string is longer than 128 characters',
      0x03 => 'No string is longer than 30 characters',
    );
    return (isset($LookupExtendedHeaderRestrictionsTextFieldSize[$index]) ? $LookupExtendedHeaderRestrictionsTextFieldSize[$index] : '');
  }
 

 View on GitHub View on Trac