I and trying to have an if else() statement look for 2 or more conditions before executing but its not working for me.. My ultimate goal for example is to search for array[Pack] and if [Type] == s45 && [packageA1] exist then to use array_slice to add additional info to the [Type array]
The if() condition works fine but not the else if()....
$node:
Array
(
[Pack] => Array
(
[Type] => s45
[packageA1] => Array
(
[level] => REMOVE FROM DB
[stage] => REMOVE FROM DB
[description] => s45 info here
[image] =>
)
)
[Pack2] => Array
(
[Type] => s99
[packageA1] => Array
(
[level] => REMOVE FROM DB
[stage] => REMOVE FROM DB
[description] => s99 info goes here
[image] =>
)
)
)
//more code...
$i = 1;
if(!array_key_exists($item[0], $node)){
$node[$row[0]] = array("Type" => $item[0], "package".$item[1] => array("level" => "REMOVE FROM DB", "stage" => "REMOVE FROM DB", "description" => $item[3], "image" => $item[4]));
}else if(array_key_exists($item[0], $node) && array_key_exists("package".$item[1], $node)){
$i++;
$res = array_slice($node[$rowKey], 0, $i, true) + array("my_key" => "my_value") + array_slice($node[$rowKey], $i, count($node[$rowKey]) - 1, true);
}
Expected Output:
Array
(
[Pack] => Array
(
[Type] => s45
[packageA1] => Array
(
[level] => REMOVE FROM DB
[stage] => REMOVE FROM DB
[description] => s45 info here
[image] =>
)
[packageA2] => Array
(
[level] => REMOVE FROM DB
[stage] => REMOVE FROM DB
[description] => blahhhhhh blah blahh
[image] =>
)
[packageE1] => Array
(
[level] => REMOVE FROM DB
[stage] => REMOVE FROM DB
[description] => moar random stuff inserted
[image] =>
)
)
[Pack2] => Array
(
[Type] => s99
[packageA1] => Array
(
[level] => REMOVE FROM DB
[stage] => REMOVE FROM DB
[description] => s99 info goes here
[image] =>
)
)
)