dongtan9465 2017-07-08 20:58
浏览 69
已采纳

Php:获取记录功能但错误:未定义属性

I have this problem when i try to build my function ! I need to build a function to get a record in database! And my error is Notice: Undefined property: mysqli_result::$fetch_assoc in database.php

function db_get_row($sql){
    db_connect(); // Connect to Database
    global $connect; // Get Global Variable
    $row = array(); // Create array
    $result = $connect->query($sql); // Excute the query and return a record
    if($result->num_rows > 0){ // If record > 0 -> TRUE
        $row = $result->fetch_assoc; // I get that record into $row      HERE IS MY ERROR   
    }
    return $row; // Return array
}
  • 写回答

1条回答 默认 最新

  • duanbai5348 2017-07-08 21:08
    关注

    Based on :- http://php.net/manual/en/mysqli-result.fetch-assoc.php

    $row = $result->fetch_assoc;
    

    Need to be

    $row[] = $result->fetch_assoc(); //it's a function and you are assigning to array
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 联想笔记本开机出现系统更新界面
  • ¥15 各位帮帮我 我不想重做系统
  • ¥30 微信小程序蓝牙数据透传
  • ¥15 加氢站氢负荷数据集来源
  • ¥15 umi接入sentry遇到问题
  • ¥15 HBuilderX打包H5网页,扫码模块无法使用
  • ¥15 Javascript跳转页面后,无法执行后面代码,如何解决?
  • ¥15 echarts绘制图表
  • ¥15 请教两个关于高德地图定位不准的技术问题
  • ¥15 根据企业名称 对照两个文件 样本筛选/匹配