次のxmlを解析する必要があります。
Array
(
[0] => SimpleXMLElement Object
(
[@attributes] => Array
(
[rel] => http://schemas.google.com/g/2005#other
[address] => xyz@gmail.com
[primary] => true
)
)
[1] => SimpleXMLElement Object
(
[@attributes] => Array
(
[rel] => http://schemas.google.com/g/2005#other
[address] => abc@gmail.com
[primary] => true
)
)
)
上記の xml があり、この xml からアドレスのみを取得する必要があります。
foreach ($result as $title) {
$email[$count++]=$title->attributes()->address->__toString;
}
debug($email);
その結果がこれです。しかし、私はアドレスだけが欲しいです。助けが要る。
Array
(
[0] => SimpleXMLElement Object
(
)
[1] => SimpleXMLElement Object
(
)
)