getid3_matroska::ExtractCommentsSimpleTag()
{} It's a method of the class: getid3_matroska{}
No Hooks.
Return
true|false
.
Usage
// private - for code of main (parent) class only $result = $this->ExtractCommentsSimpleTag( $SimpleTagArray );
- $SimpleTagArray(array) (required)
- -
Code of getid3_matroska::ExtractCommentsSimpleTag() getid3 matroska::ExtractCommentsSimpleTag WP 6.0
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->ExtractCommentsSimpleTag($SimpleTagData); } } } return true; }