Any idea about how I can retrieve email1@some.com, email2@some.com, email3@some.com, email4@some.com and email5@some.com from this array using PHP?
Array
(
[0] => SimpleXMLElement Object
(
[0] => email1@some.com
)
[1] => SimpleXMLElement Object
(
[0] => email2@some.com
)
[2] => SimpleXMLElement Object
(
[0] => email3@some.com
)
[3] => SimpleXMLElement Object
(
[0] => email4@some.com
)
[4] => SimpleXMLElement Object
(
[0] => email5@some.com
)
)
Thanks