Getting XSD content using PHP Getting XSD content using PHP codeigniter codeigniter

Getting XSD content using PHP


XSD is XML itself. You can work with it like with any XML file.

$doc = new DOMDocument();$doc->load('your.xsd');// do whatever you want