如何使用 PHP 从 MySQL 数据库检索 XML 数据?

Linda Hamilton
发布: 2024-11-08 04:28:01
原创
754 人浏览过

How can I retrieve XML data from a MySQL database using PHP?

使用 PHP 从 MySQL 数据库中提取 XML

要使用 PHP 检索特定数据库列的 XML 输出,请使用 XMLWriter,如下所示:

// Connect to MySQL
mysql_connect('server', 'user', 'pass');
mysql_select_db('database');

// Query the database
$sql = "SELECT udid, country FROM table ORDER BY udid";
$res = mysql_query($sql);

// Initialize XMLWriter
$xml = new XMLWriter();

// Configure XML output
$xml->openURI("php://output");
$xml->startDocument();
$xml->setIndent(true);

// Create root element
$xml->startElement('countries');

// Loop through query results
while ($row = mysql_fetch_assoc($res)) {
    // Start country element
    $xml->startElement("country");

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

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

    // End country element
    $xml->endElement();
}

// End root element
$xml->endElement();

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

// Flush and output XML
$xml->flush();
登录后复制

示例 XML 输出:

<?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 数据?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!