我正在寻找可以获取数据而不提供我想要获取的列名称的内容。
这是查询:
SELECT * FROM table WHERE `name` = ?
这是我用来获取的代码(但它不起作用):
$stmt->execute();
$stmt->bind_result(); // without providing the names of the columns
$result_data = array();
while ($row = $stmt->fetch())
{
$result_data[] = $row;
}
我的主持人不支持get_result方法。