我正在尝试使用PHP工作的图库管理删除过程。我一直在磕磕绊绊地知道如何更新列表顺序,以便它们在删除后保持相同的顺序。
我有一个关联数组($ images),其中键与'order'值相同,此数字定义了库中的位置。我还有一个应该删除的订单号列表,通过用订单号识别它来删除每个图像。
$images format
array(28) {
[1]=>
array(5) {
["gallery_id"]=>
string(2) "71"
["property_id"]=>
string(1) "3"
["picture"]=>
string(17) "imgname.jpg"
["order"]=>
string(1) "1"
["alt_text"]=>
string(14) "discription"
}
[2]=>
array(5) {
["gallery_id"]=>
string(2) "83"
["property_id"]=>
string(1) "3"
["picture"]=>
string(17) "imgname.jpg"
["order"]=>
string(1) "2"
["alt_text"]=>
string(14) "discription"
}
So on... how ever large the list might be.
要删除的图像列表
$removedImgs
array(2) {
[0]=> string(1) "1"
[1]=> string(1) "3"
}
以上显示图片1和3将从图库中删除
Current: 1 2 3 4 5 6 ...
Removal: 2 4 5 6
| | | |
Reordering: 1 2 3 4
实际删除代码
// Loop though with each image and remove the ones posted from the list
foreach ($_POST['orderID'] as $removeImg)
{
// Store each removed images order id
$removedImgs[] = $removeImg;
// If we're removing images create a list of the image paths to
// unlink the files later.
if (isset($images[$removeImg]))
{
$unlinkList[] = $imgPath . $images[$removeImg]['picture'];
$unlinkList[] = $imgPath . 'thumbs/thumb' . $images[$removeImg]['picture'];
}
// $images should only contain the ones that we haven't removed.
unset($images[$removeImg]);
// Update the image order
foreach ($images as $key => &$img)
{
if ($key > $removeImg)
{
(int)$img['order']--;
}
}
var_dump($images);
echo "\n\n==========\n\n";
}
答案 0 :(得分:1)
如果您可以控制何时删除图像,那么您当时可以更轻松地更新订单。
function removeImage($images, $imgName)
{
$removedImgNum = $images[$imgName]['order'];
$images[$imgName] = undefined; // or delete, etc
foreach ($images as $img)
{
if ($img['order'] > $removedImgNum)
$img['order']--;
}
}
答案 1 :(得分:0)
不确定我理解,但是可能将两个数组与 array_diff_assoc()进行比较,然后使用 ksort()对结果进行排序将会执行您想要的操作。