I have items visually:
array(
0 => '"abc","def",ghi', //"abc","def",ghi is just value. 0----N is the expected array
1 => '"jkl", ...',
);
My actual written code in use is, so this is the concern:
array(
'"abc","def",ghi', //"abc","def",ghi is just value. 0----N is the expected array
'"jkl", ...',
);
I want to fetch “abc”, but need to ignore the rest ,”def”,ghi
How would I do that with PHP?
Thanks for any pointers.
or
$firstitem[0]will contain the first characters of the first element from yourarray including “