Checking if an object attribute is set - SimpleXML

2019-04-26 00:52发布

I have some XML I am using PHP's SimpleXML class with and I have elements within the XML such as:

<condition id="1" name="New"></condition>
<condition id="2" name="Used"></condition>

However they are not always there, so I need to check if they exist first.

I have tried..

if (is_object($bookInfo->page->offers->condition['used'])) {
    echo 'yes';
}

as well as..

if (isset($bookInfo->page->offers->condition['used'])) {
    echo 'yes';
}

But neither work. They only work if I remove the attribute part.

So how can I check to see if an attribute is set as part of an object?

3条回答
走好不送
2楼-- · 2019-04-26 01:26

What you're looking at is the attribute value. You need to look at the attribute (name in this case) itself:

if (isset($bookInfo->page->offers->condition['name']) && $bookInfo->page->offers->condition['name'] == 'Used')
    //-- the rest is up to you
查看更多
孤傲高冷的网名
3楼-- · 2019-04-26 01:42

Actually, you should really use SimpleXMLElement::attributes(), but you should check the Object afterwards using isset():

$attr = $bookInfo->page->offers->condition->attributes();
if (isset($attr['name'])) {
    //your attribute is contained, no matter if empty or with a value
}
else {
    //this key does not exist in your attributes list
}
查看更多
做个烂人
4楼-- · 2019-04-26 01:46

You can use SimpleXMLElement::attributes()

$attr = $bookInfo->page->offers->condition->attributes();

if ($attr['name'] == 'Used') {
  // ...
查看更多
登录 后发表回答