PHP MySQLi 从预处理语句中获取关联数组

PHP MySQLi Get Associative Array from prepared statement

我需要从我网站页面的 MySQL table 中获取值的关联数组。我知道这可以使用 $stmt->get_result(); 这似乎在我的服务器上被禁用,我无权访问 PHP.ini 文件。是否可以使用准备好的语句将 mysqli_stmt 转换为 mysqli_result 来获取值的关联数组?

如果您没有可用的 mysqlnd 驱动程序,您将在尝试调用 $stmt->get_result();.

时得到未定义的引用

Check this Gist

一个 PHP 库,它在 mysqli_ 命名空间中提供了几个 mysqlnd 函数,允许开发人员使用带有 fetch_assoc() 和 fetch_array 的 mysqli 准备语句()等,无需安装mysqlnd.