in my php code I run a bunch of shell scripts that finally output the following
['October 20, 2003', '047085815X', '978-\n0470858158', '1', u'\nWireless Foresight: Scenarios of the Mobile World in 2015 [Hardcover]\n']
the above output is saved to $temp.
However, when I do echo $temp[0] it prints the first open bracket and echo $temp[1] print the single quote mark etc.....
I believe this is because its a string and not an array.
I would like to convert this to n array were each element is separated with a coma.
However, note that october 20, 2003 has a comma in it and that should remain its own element.
Can someone point me to what function im looking for.
ubefore the string in array position4?