0

这是我的 XML 文件conf.xml

<?xml version="1.0" encoding="ISO-8859-1"?>
<conf>
  <auth>
     <ids></ids>
     <key></key>
  </auth>
</conf>

这是我的 PHP 文件change.php

<?php   
  $DBUNAME="BOB1";
  $DBPWD="BOB2";  
?>

我想要那个变量$DBUNAME$DBPWD作为元素添加到 XML 文件中

<ids>BOB1</ids>
<key>BOB2</key>
4

1 回答 1

2

这将满足您的需要,

<?php 

$file ="config.xml";

$DBUNAME="BOB1";
$DBPWD="BOB2";

//load xml object
$xml= simplexml_load_file($file);

//assign auth id
$xml->auth->ids = $DBUNAME;

//assign auth key
$xml->auth->key = $DBPWD;

//store the value into the file
file_put_contents($file, $xml->asXML());

?>
于 2013-09-18T05:04:46.510 回答