FreshPro
FreshPro

Reputation: 873

XPath get XML attribute

I'm uploading and xml file using a php class I wrote. What I need is I need to check if ReadingDate exists in the xml or not.

<ProductCollect ReadingDate="2013-09-12T11:39:57.763">

I can get ProductCollect but how to access ReadingDate?

Upvotes: 1

Views: 114

Answers (1)

Aelios
Aelios

Reputation: 12137

To get an attribute with XPath

/ProductCollect/@ReadingDate

Upvotes: 1

Related Questions