0

我想添加/显示来自数据库查询的数据并将其添加到 XML 文件中。例如,我有一个 table_persons,它有一个名字和年龄。我创建了一个 mysql 查询来获取它的名称和年龄。然后简单地将数据(人的姓名和年龄)放入 XML 文件中。

你会怎么做?或者有可能吗?

4

2 回答 2

0

我建议您使用DomDocumentfile_put_contents创建您的 XML 文件。

像这样的东西:

// Create XML document
$doc = new DomDocument('1.0', 'UTF-8');

// Create root node
$root = $doc->createElement('persons');
$root = $doc->appendChild($root);

while ($row = mysql_fetch_assoc($result)) {
    // add node for each row
    $node = $doc->createElement('person');
    $node = $root->appendChild($node);

    foreach ($row as $column => $value) {
        $columnElement = $doc->createElement($column);
        $columnElement = $node->appendChild($columnElement);

        $columnValue = $doc->createTextNode($value);
        $columnValue = $columnElement->appendChild($columnValue);
    }
}

// Complete XML document
$doc->formatOutput = true;
$xmlContent = $doc->saveXML();

// Save to file
file_put_contents('persons.xml', $xmlContent);
于 2012-05-03T21:17:42.500 回答
-1
<?php
[snip] //database code here

$f = fopen('myxml.xml', 'a+');
foreach($row = mysqli_fetch_assoc($resultFromQuery))
{
    $str = "<person>
        <name>{$row['name']}</name>
        <age>{$row['age']}</age>
    </person>\n";
    fwrite($f, $str);
}
fclose($f);
?>

假设您使用mysqli,此代码有效。如果没有,适合。在fopen函数调用中,a+告诉它在写入时打开它以进行读取,并将指针放在文件末尾。

祝你好运。

于 2012-04-20T05:00:55.097 回答