PHPmysql_insert_id() 函数
Posted 乘客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHPmysql_insert_id() 函数相关的知识,希望对你有一定的参考价值。
mysql_insert_id() 函数返回上一步 INSERT 操作产生的 ID。
如果上一查询没有产生 AUTO_INCREMENT 的 ID,则 mysql_insert_id() 返回 0。
$sql="INSERT into t_article (f_parent_id, f_title, f_username, f_board_id,f_post_time, f_ip) values"; $sql.="(‘".$f_parent_id."‘,‘".$f_title."‘,‘".$f_username."‘,‘".$f_board_id."‘,‘".$f_post_time."‘,‘".$f_ip."‘)"; $rs1=$conn->query($sql); $ttt=mysqli_insert_id($conn);
以上是关于PHPmysql_insert_id() 函数的主要内容,如果未能解决你的问题,请参考以下文章
R语言使用tryCatch函数调试R代码实战:tryCatch函数运行正常R代码tryCatch函数运行有错误(error)的R代码示例/tryCatch函数运行有警告(warning)的R代码示例