Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我可以在 php 中更改文件详细信息吗?
例如:在一个 mp3 文件中,我想更改标题和专辑。
请指导我如何做到这一点。
$data = array( 'title' => 'NEW_TITLE', 'album' => 'NEW_ALBUM' ); id3_set_tag('file.mp3', $data);