Fix #38730 (Include REPLACE in the description)

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@219446 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Etienne Kneuss 2006-09-06 09:48:43 +00:00
parent ce725f29fa
commit bd9a1432aa
2 changed files with 5 additions and 5 deletions

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.9 $ -->
<!-- $Revision: 1.10 $ -->
<refentry id="function.mysql-num-rows">
<refnamediv>
<refname>mysql_num_rows</refname>
@ -15,8 +15,8 @@
<para>
Retrieves the number of rows from a result set. This command is only valid
for statements like SELECT or SHOW that return an actual result set.
To retrieve the number of rows affected by a INSERT,
UPDATE, or DELETE query, use <function>mysql_affected_rows</function>.
To retrieve the number of rows affected by a INSERT, UPDATE, REPLACE or
DELETE query, use <function>mysql_affected_rows</function>.
</para>
</refsect1>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.19 $ -->
<!-- $Revision: 1.20 $ -->
<refentry id="function.mysqli-affected-rows">
<refnamediv>
<refname>mysqli_affected_rows</refname>
@ -20,7 +20,7 @@
</classsynopsis>
<para>
<function>mysqli_affected_rows</function> returns the number of rows affected by the last
INSERT, UPDATE, or DELETE query associated with the provided <parameter>link</parameter>
INSERT, UPDATE, REPLACE or DELETE query associated with the provided <parameter>link</parameter>
parameter. If the last query was invalid, this function will return -1.
</para>
<note>