|
PHP5中文手册
pg_affected_rows(PHP 4 >= 4.2.0, PHP 5) pg_affected_rows — 返回受影响的记录数目 说明
int pg_affected_rows
( resource $result
)
pg_affected_rows() 返回在 pg_query() 中执行 INSERT,UPDATE 和 DELETE 查询后受到影响的记录数目(包括实例/记录/行)。如果本函数没有影响到任何记录,则返回 0。
Example#1 pg_affected_rows() 例子
<?php
参见 pg_query() 和 pg_num_rows()。 |