Warning: mysqli_query(): Couldn't fetch mysqli in E:\2020\workspace\phpstorm\xxx.php on line 82
Warning: mysqli_fetch_array() expects parameter 1 to be mysqli_result, null given in E:\2020\workspace\phpstorm\xxx.php on line 114
分析:
找到82行发现没有问题。114行是因为82行的错误导致的。
后面发现DBconnection-> close()过早关闭连接; 在__destruct()中,因为只要CLASS完成加载,连接就会立即关闭.
解决方案:
使得关闭失效,不关闭连接
说明:不要插入…-> close();
问题解决!!!!