我似乎无法让asort / arsort正常运行我的代码。我最初使用的是sort / asort。当我print_r数组出现排序时,我继续我的“createtable”函数,它只是按索引顺序打印值。有什么想法吗?
我的主文件中的代码段
//Sorts Array by value [Ascending]
asort($songArray);
print_r($songArray);
//Creates table [See inc_func.php]
CreateTable ($songArray);
参考函数
function CreateTable ($array)
{
/* Create Table:
* count given $array as $arrayCount
* table_start
* for arrayCount > 0, add table elements
* table_end
*/
$arrayCount = count($array);
echo '<table>';
echo '<th colspan="2"> "Andrews Favorite Songs"';
// as long as arraycount > 0, add table elements
for ($i = 0; $i < $arrayCount; $i++)
{
$value = $array[$i];
echo '<tr>';
echo '<td>'.($i+1).'</td>';
echo '<td>'.$value.'</td>';
echo '</tr>';
}
echo '</table>'.'<br>';
}
谢谢。
答案 0 :(得分:2)
对数组进行排序不会改变键,只需重新排序
您的显示代码然后按数字顺序迭代数组,因此忽略顺序。
而是使用foreach循环:
function CreateTable ($array)
{
echo '<table>';
echo '<th colspan="2"> "Andrews Favorite Songs"';
$count = 1;
foreach ($array as $value)
{
echo '<tr>';
echo '<td>'.$count++'</td>';
echo '<td>'.$value.'</td>';
echo '</tr>';
}
echo '</table>'.'<br>';
}