Saved Bookmarks
| 1. |
Explain the mechanism available for handling xml in php |
|
Answer» Answer: PHP 5's new SIMPLEXML module makes parsing an XML DOCUMENT, well, simple. It turns an XML document into an object that provides STRUCTURED access to the XML. To create a SimpleXML object from an XML document stored in a string, pass the string to simplexml_load_string( ). It returns a SimpleXML object. MARK ME PLEASE PLEASE I BEG U |
|