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 に答える