Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在将我的项目从 mysql 转换为 mysqli,我的问题是它mysqli_result()不适用于我的旧代码。我的旧代码是:mysql_result($res,0,0);
mysqli_result()
mysql_result($res,0,0);
当我尝试mysqli_result()使用旧代码添加时,它不起作用。
还有另一种方法可以使用我的旧参数吗?
mysqli_result()不适用于您的旧参数,因此您需要创建一个新函数,这是一个适用于您的旧参数的函数的代码:
function mysqli_result($res, $row, $field=0) { $res->data_seek($row); $datarow = $res->fetch_array(); return $datarow[$field]; }