SimpleXml to string

Viewed 154687

Is there any function that makes string from PHP SimpleXMLElement?

8 Answers

Sometimes you can simply typecast:

// this is the value of my $xml
object(SimpleXMLElement)#10227 (1) {
  [0]=>
  string(2) "en"
}

$s = (string) $xml; // returns "en";
Related