Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
$xml是一个SimpleXML对象。
$xml
SimpleXML
print_r($xml->Title);
输出SimpleXMLElement Object ( [0] => K&H 3093 Extreme Weather Kitty Pad with Fleece Cover )
SimpleXMLElement Object ( [0] => K&H 3093 Extreme Weather Kitty Pad with Fleece Cover )
如何访问第一个元素?
print_r($xml->Title[0]);
什么都不输出!
尝试
echo (string) $xml->Title;
您必须将其转换为字符串。