一款教育游戏使用一堆25个mp3文件作为名称(1.mp3、2.mp3、3.mp3等)。它们会依次播放,并在主声音中随机添加一个音频前缀。
我使用了这篇文章:Merge two mp3 php来合并文件。现在,每个播放的曲目都有三个mp3文件:主声音文件(1.mp3、2.mp3等)和两个辅助文件 s_prefix.mp3 (声音为添加)和 s_blank.mp3 (添加静音)。我用这些辅助文件创建一个数组,将它们随机化并添加到主要音频之前。
<?php
$a = $b = $c = 1;
$arr = array("mp3files/prefix.mp3", "mp3files/blank.mp3");
?>
<table>
<tr>
<td><a href="
<?php
// first audio
$s_rand = $arr[rand(0,sizeof($arr)-1)];
file_put_contents('mp3files/comb' . $a++. '.mp3', file_get_contents($s_rand) . file_get_contents('mp3files/' . $b++. '.mp3'));
echo ('mp3files/comb' . $c++. '.mp3');
?>
">Example text1</a></td>
</tr>
<tr>
<td><a href="
<?php
// second audio
$s_rand = $arr[rand(0,sizeof($arr)-1)];
file_put_contents('mp3files/comb' . $a++. '.mp3', file_get_contents($s_rand) . file_get_contents('mp3files/' . $b++. '.mp3'));
echo ('mp3files/comb' . $c++. '.mp3');
?>
">Example text2</a></td>
</tr>
<tr>
<td><a href="
<?php
// third etc... audio
$s_rand = $arr[rand(0,sizeof($arr)-1)];
file_put_contents('mp3files/comb' . $a++. '.mp3', file_get_contents($s_rand) . file_get_contents('mp3files/' . $b++. '.mp3'));
echo ('mp3files/comb' . $c++. '.mp3');
?>
">Example text3</a></td>
</tr>
</table>
它可以正常工作,但是就我所知,它看起来还很大,并且需要重复很多次。有人可以简化代码,或者最好是创建一个php函数来重申它。
答案 0 :(得分:0)
您需要使用循环
<?php
$start_file = 1; //first file
$files_count = 3; //count of all educational files
$prefix = array("mp3files/prefix.mp3", "mp3files/blank.mp3");
for ($i = $start_file; $i <= $files_count; $i++){
$s_rand = $prefix[rand(0,sizeof($prefix)-1)];
file_put_contents('mp3files/comb' . $i. '.mp3',
file_get_contents($s_rand) .
file_get_contents('mp3files/' . $i. '.mp3'));
echo ('mp3files/comb' . $i. '.mp3');
}