PHP中的数组拆分

Now my array is Storing values like

Array([0] => "Aaa", "bbb", "ccc")

How can I make this Array as below using PHP

Array[0] = "Aaa", Array[1] = "bbb"

How to make like this. I tried with explode its not taking values correctly If anyone knows solution. Please help me to get out of this. Thanks in advance.

$oldarray[0]='"abc","def","hij"';
$oldarray[1]='"abc","def","hij"';
$newarray=array();
foreach ($oldarray as $value) {
    $newarray[] = str_replace('"','',explode(',',$value));
    //print_r($value);die();
}
print_r($newarray);

Use explode to split the value in multiple values based on the coma, use str_replace to remove the quotes :

you do something like this

$newarray = explode(',',str_replace('"', "",$oldarray[]));

or:

$newarray = explode('","',trim($oldarray[],'"'));

docs

Use explode

Returns an array of strings, each of which is a substring of string formed by splitting it on boundaries formed by the string delimiter comma.

$array1 = explode(',',$array[0]);

Use str_replace to remove double quotes

 str_replace('"', '', $array[0]);
 $array1 = explode(',',str_replace('"', '',$array[0]));

Check array1[0], array1[1] and array1[2] to find your values