Hi!
foreach ($xml->xpath('/feature') as $character) {
Das Element /feature gibt es in deinem Dokument nicht, /DeviceInstallableOption/feature ergäbe alle feature-Elemente. Absolute Adressierung bewirkt aus jedem Knoten heraus einen absoluten Zugriff auf das gesamte Dokument. Von $xml kannst du relativ auf feature oder feature/name zugreifen. und von $news relativ auf options und options/option, und so weiter.
Lo!