我有一个问题我有两个数组,1使用php explode函数创建。我想要的是显示数组中每个单词的数字。下面是我正在使用的代码。我想要它的原因,以便我可以将mp3文件链接到列表中的每个单词。 mp3的文件链接格式是链接:0000001.mp3,0000002.mp3等。
目前,数组为每个数组生成零的起始键值:
$a1=array(0=>"Cat",1=>"Dog",2=>"Horse",3=>"House");
$a2=array(0=>"Bird",1=>"Rat",2=>"Fish");
$a3=array(0=>"Horse",1=>"Dog",2=>"Bird");
我希望数组具有继续的键,以便我可以将它们链接到mp3文件,例如
$a1=array(0=>"Cat",1=>"Dog",2=>"Horse",3=>"House");
$a2=array(4=>"Bird",5=>"Rat",6=>"Fish");
$a3=array(7=>"Horse",8=>"Dog",9=>"Bird");
检查第15行 p.s我不是php的专家,我肯定知道php代码中有几个错误。 http://www.deen-ul-islam.org/quran-player/quran.php
foreach ($suraText as $aya) {
$trans = $transText[$ayaNum- 1];
// remove bismillahs, except for suras 1 and 9
if (!$showBismillah && $ayaNum == 1 && $sura !=1 && $sura !=9) {
$aya = preg_replace('/^(([^ ]+ ){4})/u', '', $aya);
// display waqf marks in different style
// $aya = preg_replace('/ ([ۖ-۩])/u', '<span class="sign"> $1</span>', $aya);
$surah2 = leading_zeros($sura, 3);
$ayaNum2 = leading_zeros($ayaNum, 3);
$aya = explode(' ',$aya);
echo "<div class=aya>";
echo "<div class=quran><a href='http://www.everyayah.com/data/Ghamadi_40kbps/$surah2$ayaNum2.mp3' class='sm2_link'><span class=ayaNum>$ayaNum. </span></a>";
foreach($aya as $key => $aya) {
$key = $key+1; ?>
<a href="http://audio.allahsquran.com/wbw/<?php echo $key ?>.mp3" class="sm2_link"><span class="word"><?php echo $aya ?></span></a>
<?php }
echo "</div>";
//echo "<div class=trans>$trans </div>";
echo "</div>";
$ayaNum++;
}
答案 0 :(得分:3)
在foreach循环中使用键:
foreach($array as $i=>$item) {
echo $i.' = '.$item.'<br/>'
}
答案 1 :(得分:1)
到目前为止,我还没有解决你的问题,你应该使用类似的代码:
foreach ($suraWords as &$word) {
$word = substr('0000000'.array_search($word, $dictionary),-7).'.mp3';
}
其中$dictionary
是一个包含您将识别的所有单词的数组,$suraWords
是包含爆炸的数组的数组。
通过这种方式,所有单词都会被翻译成相应的文件名(虽然我对此解决方案的效率没有任何假设)。
答案 2 :(得分:0)
Why don't you just do an array_merge of the three arrays? Is there any reason you need to have the information in separate arrays?
That way you would have all the sequential keys as you need them.