alternative to mysql_field_name in mysqli(mysqli 中 mysql_field_name 的替代方案)
问题描述
所以我发现了这个将mysql查询转换为XML页面的很棒的函数,它看起来正是我需要的.唯一的问题是它使用了 mysql,但不再受支持,而且结果使用的函数之一不在 mysqli 中.有谁知道 mysql_field_name 的替代方法?
So I found this great function that converts mysql queries into a XML page, and it looks like exactly what I need. The only problem is that it uses mysql, but thats not supported anymore, and it turns out one of the functions used isn't in mysqli. Does anyone know of an alternative to mysql_field_name?
这是我找到的函数
function sqlToXml($queryResult, $rootElementName, $childElementName)
{
$xmlData = "<?xml version="1.0" encoding="ISO-8859-1" ?>
";
$xmlData .= "<" . $rootElementName . ">";
while($record = mysql_fetch_object($queryResult))
{
/* Create the first child element */
$xmlData .= "<" . $childElementName . ">";
for ($i = 0; $i < mysql_num_fields($queryResult); $i++)
{
$fieldName = mysql_field_name($queryResult, $i);
/* The child will take the name of the table column */
$xmlData .= "<" . $fieldName . ">";
/* We set empty columns with NULL, or you could set
it to '0' or a blank. */
if(!empty($record->$fieldName))
$xmlData .= $record->$fieldName;
else
$xmlData .= "null";
$xmlData .= "</" . $fieldName . ">";
}
$xmlData .= "</" . $childElementName . ">";
}
$xmlData .= "</" . $rootElementName . ">";
return $xmlData;
}
有问题的部分是
$fieldName = mysql_field_name($queryResult, $i);
谢谢
迈克
推荐答案
有很多方法可以做到,我猜最相似的是:
There are many ways to do it, I guess the most similar would be:
$fieldName = mysqli_fetch_field_direct($result, $i)->name;
http://www.php.net/手册/en/mysqli-result.fetch-field-direct.php
这篇关于mysqli 中 mysql_field_name 的替代方案的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:mysqli 中 mysql_field_name 的替代方案
基础教程推荐
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- 在多维数组中查找最大值 2021-01-01