dongtan9465 2017-07-08 12: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 13: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
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部