update : 2015.11.03
php.shukuma.com검색:
|
id3_get_version(PECL id3 >= 0.1) id3_get_version — Get version of an ID3 tag 설명
int id3_get_version
( string
$filename
)id3_get_version() retrieves the version(s) of the ID3 tag(s) in the MP3 file. If a file contains an ID3 v1.1 tag, it always contains a 1.0 tag, as version 1.1 is just an extension of 1.0. 인수
반환값
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
예제
Example #1 id3_get_version() example
<?php 위 예제의 출력 예시: Contains a 1.x tag Contains a 1.1 tag 참고
|