我有下面的集合
[
{
"versions": [
{
"id": null,
"name": null,
"price": null
}
]
}
]
但我想如果id,name,price null版本设置为[]类似:
[
{
"versions": [
]
}
]
有人能帮我做这件事吗?我在互联网上搜索了很多解决方案,但没有人工作!!tks伙计们!!!
$filtered = $collection->filter(function ($value, $key) {
return $value != null;
});