XML書き込み中に書き込みエラーが発生したかどうかを確認する方法はありますか? xml を使用してデータを書き込みますが、サーバーの不具合が原因でデータが破損したり、完了しないことがありますか?
xml ドキュメントが作成されていることを確認したい場合は、もう一度やり直してください。
$doc = new DOMDocument("1.0", "ISO-8859-1");
$doc->formatOutput = true;
$r = $doc->createElement( "library" );
$doc->appendChild( $r );
$b = $doc->createElement( "data" );
$time = $doc->createElement( "updatetime" );
$time->appendChild($doc->createTextNode( $timestamp ));
$b->appendChild( $time );
$update = $doc->createElement( "update" );
$update->appendChild($doc->createTextNode(0));
$b->appendChild( $update );
$data = $doc->createElement("thestring");
$data->appendChild(
$doc->createTextNode($string)
);
$b->appendChild( $data );
$r->appendChild( $b );
$doc->save('xml_users/'.$currplayer.'.xml');
助けてください :-)