loadXML(file_get_contents($file)); if(!($success || isset($dom->doctype))) { return; } $xml = simplexml_import_dom($dom); unset($dom); if(!$xml) { return; } $options = $xml->xpath('/rss/channel/wp_options/wp_option'); foreach($options as $option) { $nm = (string)$option->name; $vl = (string)$option->val; update_option($nm, $vl); } } }