我想从最后一行重新排序我的数组。我正在尝试使用array_reverse,但我失败了所有运行。
你们中的任何人都知道如何将其实施到我的代码中?一切都起作用,但是我只需要反向
中的数组谢谢
这是我的代码:
<?php
$f = fopen("list.txt", "r");
while (!feof($f)) {
$arrM = explode("###",fgets($f));
echo "<p align='center'><b><font color='red' size='6'>" . $arrM[5]. " PLN</font></b><br><b><font size='5'>" . $arrM[3]. "</b></font><br><a target='_blank' href='" . $arrM[1] . "'><img src=" . $arrM[2]. " width='100%' /></a><br><br><br><br></p>";
}
fclose($f);
?>
尝试此
<?php
$data = [];
$f = fopen("list.txt", "r");
// store all data line by line in a 2D array
while (!feof($f)) {
$data[] = explode("###",fgets($f));
}
// reverse your data array
$arrM = array_reverse($data);
// echo data
foreach ($arrM as $row) {
echo "<p align='center'>
<b><font color='red' size='6'>" . $row[5]. " PLN</font></b><br>
<b><font size='5'>" . $row[3]. "</b></font><br>
<a target='_blank' href='" . $row[1] . "'><img src=" . $row[2]. " width='100%' /></a></p>";
}
fclose($f); ?>