print_r($item->description);
SimpleXMLElement Object
(
[0] => blah blah blah
)
I can typecast to a string with (string), but what’s the right way?
print_r($item->description);
SimpleXMLElement Object
(
[0] => blah blah blah
)
I can typecast to a string with (string), but what’s the right way?
Casting to a string would be the right way, AFAIK