getid3_quicktime::search_tag_by_pair() –
You appear to be a bot. Output may be restricted
Description
Usage
getid3_quicktime::search_tag_by_pair( $info, $k, $v, $history, $result );
Parameters
- $info
- ( array ) required –
- $k
- ( string ) required –
- $v
- ( string ) required –
- $history
- ( string ) required –
- $result
- ( array ) required –
Returns
void
Source
File name: wordpress/wp-includes/ID3/module.audio-video.quicktime.php
Lines:
1 to 12 of 12
public function search_tag_by_pair($info, $k, $v, $history, &$result) { foreach ($info as $key => $value) { $key_history = $history.'/'.$key; if (($key === $k) && ($value === $v)) { $result[] = array($key_history, $info); } else { if (is_array($value)) { $this->getid3_quicktime::search_tag_by_pair($value, $k, $v, $key_history, $result); } } } }