I wrote a function wheere I need to store some data in database. I have multidimensional associative array.
I dumped one part of the code..
When I dump:
$csv->setCode($data[7]);
dump($data[7]);die;
and I get
"{"id":"131-2-0-615317","o":"raccoon-events-ltd","j":"Member of the...","c":"Sport For All..."}"
Now, I need to pull out just the "ID" part of the code..
I just tried:
dump($data[7]=>id);die;