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] => ふたり
)
)