从print_r($theobject)获得此打印输出;
SimpleXMLElement Object
(
[@attributes] => Array
(
[label] => a
)
[0] => Abnormal psychology : Abnormal psychology :
)
只是找不到一种方法来获取元素0,即“异常心理学:”
让我们将对象称为$theobject
我做了$theobject [0],什么也没得到.
非常感谢
解决方法:
您可以将对象转换为字符串:
$str = (string)$theobject;