Fatal error: Call to undefined method mysqli_result::fetch_all()

后端 未结 3 1215
独厮守ぢ
独厮守ぢ 2020-11-29 10:48

I have problems with PHP in Ubuntu 10.04. When I try use mysqli_result::fetch_all this error appears:

Call to undefined method mysqli_result::fetch_all()

3条回答
  •  北海茫月
    2020-11-29 11:38

    mysqli_result::fetch_all() requires MySQL Native Driver (mysqlnd).

    chances are you might be missing it.

    have a look at this posts, that might help you.

    mysqli fetch_all() not a valid function?

提交回复
热议问题