Any ideas on how I can get PHPs SimplXMLElement to kick off with the following?
<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://earth.google.com/kml/2.2">
The main root will then be:
<Document></Document>
Or do I use simplexml_load_string() to set it up?
Context: I am extending simpleXmlElement to create some kml files.
EDIT
Actually, setting the kml xmlns was laughably easy to do:
new simpleXMLElement('<kml xmlns="http://earth.google.com/kml/2.2">
<Document></Document></kml>');
Just how to set encoding="UTF-8" that is bothering me, seemingly the kml is acceptable without that, but I'd still like to understand how to do it if pos.
new SimpleXMLElement('<?xml version="1.0" encoding="UTF-8"?>'
.'<kml xmlns="http://earth.google.com/kml/2.2">'
.'<Document></Document></kml>');