getID3::error() – Error handling.

You appear to be a bot. Output may be restricted

Description

Error handling.

Usage

$array = getID3::error( $message );

Parameters

$message
( string ) required

Returns

array

Source

File name: wordpress/wp-includes/ID3/getid3.php
Lines:

1 to 8 of 8
  public function error($message) {
    $this->getID3::CleanUp();
    if (!isset($this->info['error'])) {
      $this->info['error'] = array();
    }
    $this->info['error'][] = $message;
    return $this->info;
  }
 

 View on GitHub View on Trac