insert()方法的返回值是零的问题,大神们我想请教一下
用mysqli_insert_id(connect())时的返回值一只是0,而用$link=connect(),mysqli_insert_id($link)时返回值正常,我可以认为这个函数的参数只能是一个变量而不能是一个方法吗?
用mysqli_insert_id(connect())时的返回值一只是0,而用$link=connect(),mysqli_insert_id($link)时返回值正常,我可以认为这个函数的参数只能是一个变量而不能是一个方法吗?
2016-09-04
是这样的,mysqli_insert_id(connect()),returns the ID generated by a query on a table with a column having the AUTO_INCREMENT attribute. If the last query wasn't an INSERT or UPDATE statement or if the modified table does not have a column with the AUTO_INCREMENT attribute, this function will return zero.
也就是说,如果最后一句sql不是插入或者是update,返回值为0,我的建议是把insert方法的最后两行变成:
$result=mysqli_query(connect(),$sql);
return $result;
mysqli_query()函数如果是插入操作成功,那么返回值为true;
举报