Is there any function that makes string from PHP SimpleXMLElement?
Is there any function that makes string from PHP SimpleXMLElement?
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";