PHP:显示MYSQLI_USE_RESULT的表不起作用

时间:2017-03-17 13:56:43

标签: php mysqli

喜欢主题。在查询中:

$query = $link->query('SHOW TABLES LIKE "table"',MYSQLI_USE_RESULT);

并检查如下:

echo $query->num_rows;

始终显示0 我提到$ query-> close();没有帮助。

实际上被投票为文档错误: https://bugs.php.net/bug.php?id=74262

1 个答案:

答案 0 :(得分:0)

你做错了原因。

$result = $link->query("SHOW TABLES LIKE 'table'");
$rows = $result->num_rows;

echo $rows;

程序:

$result = mysqli_query($link,"SHOW TABLES LIKE 'table'");
$rows = mysqli_num_rows($result);

echo $rows;