I have a manifest.plist file (come from Apple). This is an XML file. Here's an exemple of the structure :
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>id</key>
<string>3214</string>
<key>name</key>
<dict>
<key>en</key>
<string>Hello World</string>
<key>jp</key>
<string>Hello World JP</string>
</dict>
<key>kilometers</key>
<integer>430</integer>
<key>cloud</key>
<true/>
</dict>
</plist>
I can get this XML as object with simplexml. Now I would like to change some values in my XML (e.g cloud to false of jp string value).