getid3_handler::ftell() –

You appear to be a bot. Output may be restricted

Description

Usage

$int|bool = getid3_handler::ftell();

Parameters

Returns

int|bool

Source

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

1 to 6 of 6
  protected function ftell() {
    if ($this->data_string_flag) {
      return $this->data_string_position;
    }
    return ftell($this->getid3->fp);
  }
 

 View on GitHub View on Trac