I am trying to retrieve just the value and not the object out of a variable.
SimpleXMLElement Object ( [@attributes] => Array ( [name] => price ) [0] => 14.99 )
I am trying to get the 14.99 out. have no Idea.
figured it out. HAHA
you have to cast the variable. like so
(int)$price[0]