I recently used id3_set_tag and I didn't get any response (True or False)! For testing, I used the sample code, but nothing happened. my server PHP version is : 5.6.
I used this sample code:
<?php
// test my php
echo "test1";
$data = array(
"title" => "Re:Start",
"artist" => "Re:\Legion",
"comment" => "A nice track"
);
$result = id3_set_tag( "myfilepath.mp3", $data, ID3_V1_0 );
if ($result) {
echo "Tag successfully updated\n";
} else {
echo "failed";
}
echo "test2";
?>
only test1 printed and nothing else happened!