You appear to be a bot. Output may be restricted
Description
Usage
getid3_asf::__construct( $getid3 );
Parameters
- $getid3
- ( mixed ) required –
Returns
void
Source
File name: wordpress/wp-includes/ID3/module.audio-video.asf.php
Lines: 1 to 11 of 11
public function __construct(getID3 $getid3) { parent::__construct($getid3); // extends getid3_handler::__construct() // initialize all GUID constants $GUIDarray = $this->KnownGUIDs(); foreach ($GUIDarray as $GUIDname => $hexstringvalue) { if (!defined($GUIDname)) { define($GUIDname, $this->GUIDtoBytestring($hexstringvalue)); } } }