gpt4 book ai didi

php - 在 linux 服务器上调用非对象的成员函数 fetch_assoc() 但在 windows 上不调用

转载 作者:行者123 更新时间:2023-12-02 05:17:26 25 4
gpt4 key购买 nike

当我在 linux 服务器上运行此页面时出现上述错误,但在 windows 机器上运行时它不会给我任何错误。以下是我的脚本:

include_once '/../src/init.php';
$userid = $user_data['userid'];

$date = ('Y-m-d'); //get todays date from the server


$db = new mysqli('localhost', 'root', '', 'logfile');

if ($db->connect_error) {


$error = $db->connect_error;

} else {

$sql = "SELECT a.kiloLogid,a.travelDate,a.openning, a.closing, a.clientsName,a.timeIn,a.timeOut, a.destination,a.diff
FROM viewDailyDiff a
WHERE a.`userid` = $userid AND a.`travelDate` = '".$date."'";
$result = $db->query($sql);
if ($db->error) {
$error = $db->error;
}
}






function getRow($result)

{

return $result->fetch_assoc(); //the error is on this line

}

请协助

最佳答案

我认为包含文件 init.php应该调用 getRow 函数。

当 Linux 到 Windows 转换出现问题时,最有可能通过 .htaccess 找到解决方案。尽量不要下载.htaccess

一切顺利

关于php - 在 linux 服务器上调用非对象的成员函数 fetch_assoc() 但在 windows 上不调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29104818/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com