<?php
$a = [
0 => [
"qty" => 1,
"name" => "Guide, interlocked slats, R Commodity code: 39239000 / Country of origin: PL. Delivery note 838174147 from 12.09.2019 PC 1,50/ 10",
],
1 => [
"qty" => null,
"name" => "Guide, interlocked slats, L Commodity code: 39239000 / Country of origin: PL. Delivery note 838174147 from 12.09.2019 PC",
],
2 => [
"qty" => null,
"name" => "Bottom groove set L + R Commodity code: 39239000 / Country of origin:",
]
];
$keys = $a[0];
foreach ($a as $item) {
foreach ($item as $key => $value) {
if ($value === null) {
unset($keys[$key]);
}
if (empty($keys)) {
break 2;
}
}
}
print_r(array_keys($keys));
- Output for 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.31, 8.2.0 - 8.2.26, 8.3.0 - 8.3.14, 8.4.1
- Array
(
[0] => name
)
preferences:
95.34 ms | 406 KiB | 5 Q