simple array problem
Posted: Thu Apr 02, 2009 7:24 pm
Hi there, I've new to php and have been reading some tutorials about arrays.
My issue is, I am grabbing some data via preg_match which returns an array as follows
I namely want the ふたり part.
My issue is, I am grabbing some data via preg_match which returns an array as follows
Can someone instruct me as to how I can get the information stored in the array so I can print just it, or so I can export it to a CSV?Array
(
[0] => Array
(
[0] => LYRICS=<p align="center"><b>ふたり /
)
[1] => Array
(
[0] => ふたり
)
)
I namely want the ふたり part.
Thanks![1] => Array
(
[0] => ふたり
)
)