getid3_apetag::APEtagItemIsUTF8Lookup() –
You appear to be a bot. Output may be restricted
Description
Usage
$bool = getid3_apetag::APEtagItemIsUTF8Lookup( $itemkey );
Parameters
- $itemkey
- ( string ) required –
Returns
bool
Source
File name: wordpress/wp-includes/ID3/module.tag.apetag.php
Lines:
1 to 28 of 28
public function APEtagItemIsUTF8Lookup($itemkey) { static $APEtagItemIsUTF8Lookup = array( 'title', 'subtitle', 'artist', 'album', 'debut album', 'publisher', 'conductor', 'track', 'composer', 'comment', 'copyright', 'publicationright', 'file', 'year', 'record date', 'record location', 'genre', 'media', 'related', 'isrc', 'abstract', 'language', 'bibliography' ); return in_array(strtolower($itemkey), $APEtagItemIsUTF8Lookup); }