I need to remove [picture_names] from my array. Help me to remove this?
array
Use unset function:
unset($array['picture_names']);
You can do it with unset() function. Documentation here.
$result = unset($yourArray['picture_names']); var_dump($result);