参见英文答案 > Alternative to mysqli_fetch_all needed 1个@H_301_2@在通过XAMPP在localhost上进行开发时,我在代码中使用了MysqLi_fetch_all.但在godaddy共享主机上传后,它无法正常工作.
我在互联网上研究并发现服务器应该使用MysqLnd来运行MysqLi_fetch_all.所以我无法在服务器上运行我当前的代码.
我需要这个代码的确切替代品.有什么建议?
当前代码:
$result = MysqLi_query($con,$query);
$arr = MysqLi_fetch_all($result,MysqLI_ASSOC);
$totalrecords = count($arr);
$json = array('sEcho' => '1','iTotalRecords' => $totalrecords,'iTotalDisplayRecords' => $totalrecords,'aaData' => $arr);
echo json_encode($json );
最佳答案
原文链接:/mysql/433214.html