Array
(
[E0867] => Array
(
[6] => 5
[5] => 0
)
[E8377] => Array
(
[6] => 7
[5] => 0
)
[E8373] => Array
(
[6] => 5
[5] => 0
)
if ($value[6] > 0) {
//Update product SET quantity = $value[6] WHERE model = $key
} elseif ($value[6] == 0 && $value[5] == 0) {
//Update product SET quantity = 0, status = 0 WHERE model = $key
} elseif ($value[6] == 0 && $value[5] > 0) {
//Update product SET quantity = 0, status = 1, status_id = 1 WHERE model = $key
}
array_filter($config,
function ($key) {
if (array_key_exists('DzProm', $key)) {
return $data = $key;
}
}