資源:PHP official site- SimpleXMLElement documentation
あなたは、この行にエラーがあると主張している場合:$ XMLのは、おそらく "UTF-16" ではありませんので、
$xml = iconv("UTF-16", "UTF-8", $xml);
そして、このように変更しが:
//saving generated xml file
$xml_student_info->asXML('file path and name');
:
$xml = iconv(mb_detect_encoding($xml), "UTF-8", $xml);
は、XMLファイルを保存するには次のように配列を持っている場合は
$url = "http://www.domain.com/users/file.xml";
$xml = simplexml_load_string(file_get_contents($url));
:
は、XMLファイルをインポートするには
$test_array = array (
'bla' => 'blub',
'foo' => 'bar',
'another_array' => array (
'stack' => 'overflow',
),
);
を、あなたは、次のXMLに変換したい:
<?xml version="1.0"?>
<main_node>
<bla>blub</bla>
<foo>bar</foo>
<another_array>
<stack>overflow</stack>
</another_array>
</main_node>
その後、ここにありますPHPコード:
<?php
//make the array
$test = array (
'bla' => 'blub',
'foo' => 'bar',
'another_array' => array (
'stack' => 'overflow',
),
);
//make an XML object
$xml_test = new SimpleXMLElement("<?xml version=\"1.0\"?><main_node></main_node>");
// function call to convert array to xml
array_to_xml($test,$xml_test);
//here's the function definition (array_to_xml)
function array_to_xml($test, &$xml_test) {
foreach($test as $key => $value) {
if(is_array($value)) {
if(!is_numeric($key)){
$subnode = $xml_test->addChild("$key");
array_to_xml($value, $subnode);
}
else{
$subnode = $xml_test->addChild("item$key");
array_to_xml($value, $subnode);
}
}
else {
$xml_test->addChild("$key","$value");
}
}
}
/we finally print it out
print $xml_test->asXML();
?>
XMLがASPクラシックスクリプトでUnicode形式で作成されました。 XMLはPHPスクリプトで "UTF-8"または "ANSI"のいずれかを作成しました。 –