12

这是我的数组的 print_r 输出:

Array
(
[0] => stdClass Object
    (
        [itemId] => 560639000019
        [name] => Item no1
        [code] => 00001
        [qty] => 5
        [id] => 2
    )

[1] => stdClass Object
    (
        [itemId] => 470639763471
        [name] => Second item
        [code] => 76347
        [qty] => 9
        [id] => 4
    )

[2] => stdClass Object
    (
        [itemId] => 56939399632
        [name] => Item no 3
        [code] => 39963
        [qty] => 6
        [id] => 7
    )

)

如何找到具有 [id] => 4 的对象索引以便将其从数组中删除?

4

11 回答 11

13
$found = false;  
foreach($values as $key => $value) {
    if ($value->id == 4) {
        $found = true;
        break;
    }
}

if ($found) unset($values[$key]);

这被认为比任何其他解决方案都更快,因为我们只迭代array到直到找到我们想要删除的对象。

注意:您不应该在迭代时删除数组的元素,所以我们稍后再做。

于 2012-07-17T19:20:56.460 回答
8
foreach($parentObj AS $key=>$element){
  if ($element->id == THE_ID_YOU_ARE_LOOKING_FOR){
    echo "Gottcha! The index is - ". $key;
  }
}

$parentObj显然是您的根数组 - 包含所有其他数组的数组。

我们使用foreach循环遍历每个项目,然后id根据您想要的值测试​​它的属性。一旦我们有了它 -$key我们所在的就是您正在寻找的索引。

于 2012-07-17T19:16:25.377 回答
3

使用array_search

$a = new stdClass;
$b = new stdClass;
$a->id = 1;
$b->id = 2;

$arr = array($a, $b);
$index = array_search($b, $arr);

echo $index;
// prints out 1
于 2012-07-17T19:26:16.853 回答
1

尝试这个

foreach($array AS $key=>$object){
   if($object['id'] == 4){
       $key_in_array = $key;
   }
}

// chop it from the original array
array_slice($array, $key_in_array, 1);
于 2012-07-17T19:22:57.113 回答
0

实现结果的另一种方法是使用array_filter

$array = array(
    (object)array('id' => 5),
    (object)array('id' => 4),
    (object)array('id' => 3)
);
$array = array_filter($array, function($item) {
    return $item->id != 4;
});
print_r($array);
于 2012-07-17T19:24:50.250 回答
0

一个有趣的选择

$getIdUnset = function($id) use ($myArray)
{
    foreach($myArray as $key => $obj) {
        if ($obj->id == $id) {
            return $key;
        }
    }

    return false;
};

if ($unset = $getIdUnset(4)) {
    unset($myArray[$unset]);
}
于 2012-07-17T19:47:20.757 回答
0

这是我的解决方案。鉴于,它有点hackish,但它会完成工作。

搜索(数组$items,混合$id[,&$key]);

返回由 找到的项目$id。如果您添加变量$key,它将为您提供找到的项目的键。

function search($items, $id, &$key = null) {
  foreach( $items as $item ) {
    if( $item->id == $id ) {
      $key = key($item);
      return $item;
      break;
    }
  }

  return null;
}

用法

$item = search($items, 4, $key);
unset($items[$key]);

注意:这可以修改为允许自定义键并返回共享相同值的多个项目。

我创建了一个示例,以便您可以看到它的实际效果

于 2012-07-17T19:36:44.737 回答
0

我知道,经过这么多年,这可能是一个无用的答案,但为什么不呢?

这是我个人index_of使用与其他答案相同的代码的可能实现,但让程序员选择何时以及如何进行检查,也支持复杂的检查。

if (!function_exists('index_of'))
{
    /**
     * @param iterable $haystack
     * @param callable $callback
     * @param mixed|null &$item
     * @return false|int|string
     */
    function index_of($haystack, $callback, &$item = null)
    {
        foreach($haystack as $_key => $_item) {
            if ($callback($_item, $_key) === true) {
                $item = $_item;
                return $_key;
            }
        }
        return false;
    }
}
于 2021-06-17T08:21:23.403 回答
0

目前 php 还没有任何支持的功能。

所以参考 Java 的 Vector,或者 jQuery 的 $.inArray(),它就是:

public function indexOf($object, array $elementData) {
    $elementCount = count($elementData);
    for ($i = 0 ; $i < $elementCount ; $i++){
        if ($object == $elementData[$i]) {
            return $i;   
        }
    }
    return -1;
}

您可以将此功能保存为核心功能以供以后使用。

于 2015-11-05T04:38:06.117 回答
0

就我而言,这是我的数组,因为$array
我对我的项目的这个问题感到困惑,但这里的一些答案帮助了我。

array(3) { 
           [0]=> float(-0.12459619130796) 
           [1]=> float(-0.64018439966448) 
           [2]=> float(0)
         }

然后使用if condition停止循环

foreach($array as $key => $val){
           if($key == 0){ //the key is 0
               echo $key; //find the key
               echo $val; //get the value
           }
        }
于 2020-08-02T14:03:17.710 回答
-1
foreach( $arr as $k=>&$a) {
    if( $a['id'] == 4 )
        unset($arr[$k]);
}
于 2012-07-17T19:23:52.120 回答