Php/docs/function.pg-affected-rows
来自菜鸟教程
pg_affected_rows
(PHP 4 >= 4.2.0, PHP 5, PHP 7)
pg_affected_rows — 返回受影响的记录数目
说明
pg_affected_rows
( resource $result
) : int
pg_affected_rows() 返回在 pg_query() 中执行 INSERT,UPDATE 和 DELETE 查询后受到影响的记录数目(包括实例/记录/行)。如果本函数没有影响到任何记录,则返回 0。
Example #1 pg_affected_rows() 例子
<?php$result = pg_query($conn, "INSERT INTO authors VALUES ('Orwell', 2002, 'Animal Farm')");$cmdtuples = pg_affected_rows($result);echo $cmdtuples . " tuples are affected.\n";?>
Note:
本函数以前被称为
pg_cmdtuples()
。
参见 pg_query() 和 pg_num_rows()。