php 致命错误:调用未定义的函数 mysqli_result()
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/17707331/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
Fatal error: Call to undefined function mysqli_result()
提问by Cesarg219
Can someone please tell me why this doesnt work, when I tried to switch my old sql to sqli:
当我尝试将旧的 sql 切换到 sql 时,有人可以告诉我为什么这不起作用:
$query = "SELECT * FROM `product_category`";
$result = mysql_query($query, $connect) or die("could not perform query: " . mysql_error());
$num_rows = mysql_num_rows($result);
for ($i=0; $i < $num_rows; $i++)
{
$ID = mysql_result($result,$i,"ID");
$name = mysql_result($result,$i,"name");
$description = mysql_result($result,$i,"description");
to:
到:
$query = ("SELECT * FROM `product_category`");
$result = mysqli_query($connect, $query) or die("could not perform query");
$num_rows = mysqli_num_rows($result);
for ($i=0; $i < $num_rows; $i++)
{
$ID = mysqli_result($result, "ID");
$name = mysqli_result($result,$i,"name");
$description = mysqli_result($result,$i,"description");`
it keeps giving me an error of: "Fatal error: Call to undefined function mysqli_result()"
它一直给我一个错误:“致命错误:调用未定义的函数 mysqli_result()”
回答by Marc B
Don't use this kind of code. It's highly inefficient. Use mysqli_fetch_assoc()
instead:
不要使用这种代码。这是非常低效的。使用mysqli_fetch_assoc()
来代替:
while($row = mysqli_fetch_assoc($result)) {
$id = $row['ID'];
$name = $row['name'];
etc..
}
One SINGLE database operation, rather than the 3+ you're trying to do.
一个 SINGLE 数据库操作,而不是您尝试执行的 3+ 个操作。
回答by Roman Panevnyk
if (!function_exists('mysqli_result')) {
function mysqli_result($res, $row, $field=0) {
$res->data_seek($row);
$datarow = $res->fetch_array();
return $datarow[$field];
}
}
You can create this function.
您可以创建此功能。