<?php
// header("Content-type: text/html; charset=utf-8");
$xml=new SimpleXMLElement('<Configuration />');
$Add=$xml->addchild("Add");
$Add->addAttribute("OfficeClientEdition","32");
$Add->addAttribute("Channal","SemiAnnual");
$Product=$Add->addchild("Product");
$Product->addAttribute("ID","O365ProPlusRetail");
$Language=$Product->addchild("Language");
$Language->addAttribute("ID","zh-cn");
$ExcludeApp=$Product->addChild("ExcludeApp");
$ExcludeApp->AddAttribute("ID","");
$Updates=$xml->addChild("Updates");
$Updates->addAttribute("Enabled","True");
$Updates->addAttribute("Channal","Current");
$Display=$xml->addchild("Display");
$Display->addAttribute("Leval","Full");
$Display->addAttribute("AcceptEULA","TRUE");
header("Content-type: text/xml");
echo $xml->asXml();
$xml->asXml("student.xml");
?> |