通过PHP获取MySQL数据库输出到XML

我的网站上有一个MySQL数据库,我想知道如何通过PHP从表中的以下各列获取XML输出:

  1. 你做了
  2. 国家

回答:

XMLWriter的示例。

mysql_connect('server', 'user', 'pass');

mysql_select_db('database');

$sql = "SELECT udid, country FROM table ORDER BY udid";

$res = mysql_query($sql);

$xml = new XMLWriter();

$xml->openURI("php://output");

$xml->startDocument();

$xml->setIndent(true);

$xml->startElement('countries');

while ($row = mysql_fetch_assoc($res)) {

$xml->startElement("country");

$xml->writeAttribute('udid', $row['udid']);

$xml->writeRaw($row['country']);

$xml->endElement();

}

$xml->endElement();

header('Content-type: text/xml');

$xml->flush();

输出:

<?xml version="1.0"?>

<countries>

<country udid="1">Country 1</country>

<country udid="2">Country 2</country>

...

<country udid="n">Country n</country>

</countries>

以上是 通过PHP获取MySQL数据库输出到XML 的全部内容, 来源链接: utcz.com/qa/402102.html

回到顶部