getid3_handler::feof() –

You appear to be a bot. Output may be restricted

Description

Usage

$bool = getid3_handler::feof();

Parameters

Returns

bool

Source

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

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

 View on GitHub View on Trac