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
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 如何用stata画出文献中常见的安慰剂检验图
  • ¥15 c语言链表结构体数据插入
  • ¥40 使用MATLAB解答线性代数问题
  • ¥15 COCOS的问题COCOS的问题
  • ¥15 FPGA-SRIO初始化失败
  • ¥15 MapReduce实现倒排索引失败
  • ¥15 ZABBIX6.0L连接数据库报错,如何解决?(操作系统-centos)
  • ¥15 找一位技术过硬的游戏pj程序员
  • ¥15 matlab生成电测深三层曲线模型代码
  • ¥50 随机森林与房贷信用风险模型