getid3_matroska::ExtractCommentsSimpleTag() –

You appear to be a bot. Output may be restricted

Description

Usage

$bool = getid3_matroska::ExtractCommentsSimpleTag( $SimpleTagArray );

Parameters

$SimpleTagArray
( array ) required

Returns

bool

Source

File name: wordpress/wp-includes/ID3/module.audio-video.matroska.php
Lines:

1 to 14 of 14
  private function ExtractCommentsSimpleTag($SimpleTagArray) {
    if (!empty($SimpleTagArray['SimpleTag'])) {
      foreach ($SimpleTagArray['SimpleTag'] as $SimpleTagKey => $SimpleTagData) {
        if (!empty($SimpleTagData['TagName']) && !empty($SimpleTagData['TagString'])) {
          $this->getid3->info['matroska']['comments'][strtolower($SimpleTagData['TagName'])][] = $SimpleTagData['TagString'];
        }
        if (!empty($SimpleTagData['SimpleTag'])) {
          $this->getid3_matroska::ExtractCommentsSimpleTag($SimpleTagData);
        }
      }
    }

    return true;
  }
 

 View on GitHub View on Trac