duangang2825 2014-05-02 10:10
浏览 41
已采纳

mysqli_stmt :: get_result()调用undefined [duplicate]

This question already has an answer here:

I am changing all my scripts to prepared statements with mysqli and I have a problem. I get this error when I use get_result() and I don't know why. My php version is 5.3.

Here is the code I use:

$user=$_GET['user'];
$stmt = $dbc->prepare("select * from `users` where id= ? and stare!=1"); 
$stmt->bind_param('s', $user);
$stmt->execute();
$result = $stmt->get_result();
if ($row = $result->fetch_assoc()) {

//do something

}

Error:

Call to undefined method mysqli_stmt::get_result() in /home/websoft/public_html/twingoo/engine/app/profil_edit.php on line 13
</div>
  • 写回答

1条回答 默认 最新

  • dragon5006 2014-05-02 10:17
    关注

    I encountered this problem recently.

    You need to make sure that the mysqlnd extension is installed for that particular part of mysqli to work.

    Depending on if you are using Windows or Linux (and what flavor of either) will determine how this is done.

    In CentOS, it is pretty straight-forward :

    yum install php-mysqlnd
    

    And to confirm it is installed, you can create a php page with the following :

    <?php
    phpinfo();
    ?>
    

    Then look for mysqlnd or native

    You can also validate it is installed by

    php -m | grep mysqlnd
    

    OR

    php -i | grep mysqlnd
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 sim800c模块 at指令及平台
  • ¥15 stm32开发clion时遇到的编译问题
  • ¥15 lna设计 源简并电感型共源放大器
  • ¥15 如何用Labview在myRIO上做LCD显示?(语言-开发语言)
  • ¥15 Vue3地图和异步函数使用
  • ¥15 C++ yoloV5改写遇到的问题
  • ¥20 win11修改中文用户名路径
  • ¥15 win2012磁盘空间不足,c盘正常,d盘无法写入
  • ¥15 用土力学知识进行土坡稳定性分析与挡土墙设计
  • ¥70 PlayWright在Java上连接CDP关联本地Chrome启动失败,貌似是Windows端口转发问题