XMLファイルの上書き
<Alert>
name=‘mmm’
hope=‘kk’
<test>
Name=’kkm’
</test>
</Alert>
$str = “test”;
$fileName = “test-fileName”;
$xml = simplexml_load_file( sampleXml);
(String)$xml->Alert->attribute()->hope = $str;
$xml->saveXML($fileName);
要素取得はできるんですが、書き換えができないようで。。。
何かいい方法、知らないでしょうか?
パーミッションの権限は書き込みも読み込みもできています。