0

我正在尝试使用 PHP 将 MySQL 表转换为数组。图片表中的每个商品 ID 至少有一个图片 ID,但图片 ID 的总数可能会有所不同。

图像表:

|Listing ID | Image ID |
|  1234     |     1    |
|  1234     |     2    |
|  1234     |     3    |
|  1235     |     1    |
|  1235     |     2    |

本质上,我想将图像表转换为具有如下键值对的数组:

array([0] 1234 => /FilePath/1234-1::/FilePath/1234-2::/FilePath/1234-3, [1] 1235 => /FilePath/1235-1::/FilePath/1235-2, ...)

我已经能够编写一些代码,在大多数情况下,它们可以完成这项任务。但是,也存在一些问题。

我的代码的主要问题是 $lid 数组和 $prod 数组不包含相同数量的元素($prod 包含的元素比 $lid 多一个)。这让我感到莫名其妙,因为它们从同一个图像表中提取数据,因此应该具有相同数量的元素。

我的代码:

//Set document path
$target_path = realpath($_SERVER['DOCUMENT_ROOT']). "\mypath\image\uploads\\";
//Query to download all listing IDs in Markers table 
$query = $db->query("SELECT * FROM image");
while ($row = $query->fetch(PDO::FETCH_BOTH)) {
   $temp[] = $row;
}

foreach($temp as $i=>$v){
    $line = $target_path.$v['L_ListingID']."-".$v['L_ImageID'].".jpg";
    if($temp[$i]['L_ListingID']==$temp[$i+1]['L_ListingID']){
    //appending '::' to each string in the $prod array   
        $prod[] = $line."::";
    }else{
    // * will serve as the delimiter in the $prod array
        $prod[] = $line."*";
    //Add each listing ID into Listing Array 
        $lid[] = $v['L_ListingID'];
    } 
}

//Convert the array into a big string
$bigString = implode("", $prod);

//Chop up the big string into sections delimited by '*' and insert into 'prod' array
$prod = explode("*",$bigString);

//Combine $lid array with $prod array     
$combo = array_combine($lid, $prod);

第二个问题是,每当运行 foreach 循环时,PHP 都会返回以下消息:

注意:未定义的偏移量:第 78 行 C:\mypath\getimage.php 中的 2789

第 2789 行是图像表中的最后一行,所以我认为这个错误提示可能与 $lid 和 $prod 元素个数相差 1 的事实有关。

任何建议都非常感谢。另外,如果您能想出一种更有效的方法来完成此任务,请告诉我。

谢谢,

4

2 回答 2

2

对于问题:

注意:未定义的偏移量:第 78 行 C:\mypath\getimage.php 中的 2789

这是因为你正在做:

if($temp[$i]['L_ListingID']==$temp[$i+1]['L_ListingID']){

$i+1即使您foreach在最后一个元素上,您也需要。

您需要检查该$i+1密钥是否存在,将其替换为:

if(array_key_exists($i+1, $temp) && ($temp[$i]['L_ListingID']==$temp[$i+1]['L_ListingID'])){

对于“主要”问题,您的代码太复杂了。如果你开始摇动字符串和数组,那就有问题了。仅使用字符串或仅使用数组,但不能同时使用两者,这将更难维护。

$bigstring = '';
$lid = array()
foreach($temp as $i=>$v){
    $bigstring .= $target_path.$v['L_ListingID']."-".$v['L_ImageID'].".jpg";
    if(array_key_exists($i+1, $temp) && ($temp[$i]['L_ListingID']==$temp[$i+1]['L_ListingID'])) {
        $bigstring .= "::";
    }else{
        $bigstring .= "*";
    }
    if (!in_array($v['L_ListingID'], $lid)) {
      $lid[] = $v['L_ListingID'];
    }
}

最后一件事:这是在对变量使用数组运算符之前初始化数组的好习惯。

$temp = array();
while ($row = $query->fetch(PDO::FETCH_BOTH)) {
   $temp[] = $row;
}

否则,PHP 将抛出 E_NOTICEs。

于 2012-12-29T00:08:10.433 回答
1

使用此算法,您必须为最后一行创建一个特殊情况(这会导致通知“未定义的偏移量”,如 Ninsuo 所示)。

以下算法应该构建您期望的数组:

$combo = array();
foreach($temp as $v){
    $line = $target_path.$v['L_ListingID']."-".$v['L_ImageID'].".jpg";
    $key  = $v['L_ListingID'];
    if (array_key_exists($key, $combo)) {
      // Append
      $combo[$key] .= '::' . $line;
    } else {
      // Create key
      $combo[$key] = $line;
    }
}
于 2012-12-29T00:14:49.660 回答