gpt4 book ai didi

php - 将电子邮件分配给数组组

转载 作者:行者123 更新时间:2023-11-29 13:28:24 25 4
gpt4 key购买 nike

我有一个 foreach 函数,它根据“dsid”将产品数组分组为单独的数组:

$products_array = array();
$products_query = tep_db_query("select products_id, products_name, drop_ship_id from " . TABLE_ORDERS_PRODUCTS . " where orders_id = '" . (int)$orders['orders_id'] . "' order by products_name");
while ($products = tep_db_fetch_array($products_query)) {
$products_array[] = array('id' => $products['products_id'],
'text' => $products['products_name'],
'dsid' => $products['drop_ship_id'],);
}

<?php
$products = array();

foreach($products_array as $current) {
$dsid = $current['dsid'];
$products[$dsid][] = $current;
}

$splitproductsarray = array_values($products);
?>

现在我需要采用 splitproductsarray[] 并将每组“dsid”与另一个包含直接发货电子邮件的表进行比较:

"select email from " . TABLE_DROP_SHIPPERS . " where id = splitproductsarray[]"

如何将特定电子邮件分配给具有相同 dsid 的单个产品组?如有任何帮助,我们将不胜感激!

最佳答案

很好的foreach;)

试试这个:

foreach($splitproductsarray as $dsid => $values) {
$sql = "select email from " . TABLE_DROP_SHIPPERS . " where id = " . $dsid . " LIMIT 1";
// do your query
}

关于php - 将电子邮件分配给数组组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19824493/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com