I've got an XML file that has the label @attributes for one of the names
SimpleXMLElement Object
(
[@attributes] => Array
(
[PART_NUMBER] => ABC123
I want to make a reference to this object like $product->@attributes['part_number'] but of course the @ symbol causes an error.
So how do I reference this item in the object?
Well, in the case of SimpleXML, you'd call the $product->attributes()
method as defined in the manual. That will give you an array mapping attribute names to values.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With