id3_get_version()
id3_get_version - Get version of an ID3 tag
Syntax
int id3_get_version (
string $filename)
Arguments
- filename - The path to the MP3 file Instead of a filename you may also pass a valid stream resource
Description
id3_get_version() retrieves the version(s) of the ID3 tag(s) in the MP3 file.
Version
PHP PECL id3 >= 0.1
Return value
Returns the version number of the ID3 tag of the file. As a tag can contain ID3 v1.x and v2.x tags, the return value of this function should be bitwise compared with the predefined constants ID3_V1_0, ID3_V1_1 and ID3_V2.