如何在PHP中按另一个数组中的值对数组排序

时间:2019-09-09 15:33:19

标签: php arrays sorting

我有一个从表单提交保存的图像URL数组。然后,我使用户能够使用jQueryUI的.sortable编辑表单值并对图像进行排序。我将排序后的ID添加到一个隐藏的输入中,该输入将它们添加到主POST数据以及表单值的保存数组中。

已保存的表单数据:

$dataArray(
   [firstName] => Alex
   [lastName] => Ander The Great
   [imageorder] => image1,image3,image2,image4
)

$filesArray(
   [image1] => url.png
   [image2] => url2.png
   [image3] => url3.png
   [image4] => url4.png
)

$imageorder = explode(',', $dataArray['imageorder']);
/* Gives the following */
array(
   [0] => image1
   [1] => image3
   [2] => image2
   [3] => image4
)

我需要做的是能够通过$ imageorder变量来订购以下内容。

<?php foreach($filesArray as $image) { ?>
  <img src="<?php /*echo the correct image url*/ ?>">
<?php } ?>

2 个答案:

答案 0 :(得分:3)

您可以通过将foreach循环修改为:

<?php foreach($imageorder as $image) { ?>
  <img src="<?php echo $filesArray[$image] ?>">
<?php } ?>

因此基本上在订单数组上循环,但会从原始数组中回显

答案 1 :(得分:1)

不确定我是否100%理解,但是您可以尝试以下方法:

// This would be your POST array, where the values are the image names
$order = [
    "image1",
    "image3",
    "image2",
    "image4",
];

// Your array of images where the keys match the POST array values
$images = [
    "image1" => "url.png",
    "image2" => "url2.png",
    "image3" => "url3.png",
    "image4" => "url4.png",
];

// Empty array to hold the final order
$filesarray = [];

// Iterate the $order array
foreach($order as $item):
    $filesarray[] = $images[$item]; // Push the matching $images key into the array
endforeach;

print_r($filesarray);

哪个会输出:

Array
(
    [0] => url.png
    [1] => url3.png
    [2] => url2.png
    [3] => url4.png
)