我正在尝试制作一个可以合并mp3文件的PHP程序。
我是using file_get_contents()
用于合并mp3文件。当我运行带有两个mp3文件的PHP脚本时,它工作正常但是当我使用file_get_contents()
进行合并时,我得到的东西都没有。
这是我的php代码:
<?php
$ps=file_get_contents('music5/test.mp3').file_get_contents('music5/test2.mp3').file_get_contents('music5/tes3.mp3');
$g="test";
header('Content-Type: audio/mpeg');
header('Content-Disposition: filename="$g.mp3"');
header('Content-length: '.filesize($filename));
header('Cache-Control: no-cache');
header("Content-Transfer-Encoding: chunked");
echo $ps;
?>
请帮助我,因为我是PHP的初学者,并提前感谢。