Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个以下格式的数组:-
[ { name : "Foo", type : "Bar" }, { name : "Foo", type : "Row" }, { name : "Foo" } ]
我只想在没有类型的情况下删除“Foo”的出现。基本上,只要类型不同,数组中就可以有重复,并且不能有没有类型的重复。任何帮助表示赞赏!
谢谢!
我假设您正在使用 json_decoded 对象数组。在这种情况下,你可以运行一个简单array_filter()的这样的:
array_filter()
$filtered_array = array_filter($array, function($item) { return isset($item->type); });