How can i generate csv file using this kind of data. key value also have array which is not clear to me how I can get this data and save in CSV.
echo "<pre>";
print_r($data[result][items]);
echo "</pre>";
Printing on browser is this.
Array (
[0] => Array (
[item] => Array
(
[doc_id] => bc500548
[doc_type] => void
[fields] => Array
(
[dc_creator] => Array
(
[0] => onbekend
[1] => Pictura
)
[dc_description] => Array
(
[0] => Spectrum
)
[dc_format] => Array
(
[0] => 1945
)
)
)
)
[1] => Array (
[item] => Array (
[doc_id] => bc500549
[doc_type] => void2
[fields] => Array
(
[dc_creator] => Array
(
[0] => onbekend2
[1] => Pictura2
)
[dc_description] => Array
(
[0] => Spectrum2
)
[dc_format] => Array
(
[0] => 1946
)
)
)
)
I dont understand how to get this values and save in csv file, can anybody help me about that?