vrana Fri Aug 13 11:56:57 2004 EDT
Modified files:
/phpdoc/en/reference/strings/functions strrchr.xml
Log:
Accepts string in PHP 5
http://cvs.php.net/diff.php/phpdoc/en/reference/strings/functions/strrchr.xml?r1=1.6&r2=1.7&ty=u
Index: phpdoc/en/reference/strings/functions/strrchr.xml
diff -u phpdoc/en/reference/strings/functions/strrchr.xml:1.6
phpdoc/en/reference/strings/functions/strrchr.xml:1.7
--- phpdoc/en/reference/strings/functions/strrchr.xml:1.6 Thu Jul 22 18:51:12
2004
+++ phpdoc/en/reference/strings/functions/strrchr.xml Fri Aug 13 11:56:57 2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.6 $ -->
+<!-- $Revision: 1.7 $ -->
<!-- splitted from ./en/functions/strings.xml, last change in rev 1.2 -->
<refentry id="function.strrchr">
<refnamediv>
@@ -13,7 +13,7 @@
<methodsynopsis>
<type>string</type><methodname>strrchr</methodname>
<methodparam><type>string</type><parameter>haystack</parameter></methodparam>
- <methodparam><type>char</type><parameter>needle</parameter></methodparam>
+ <methodparam><type>string</type><parameter>needle</parameter></methodparam>
</methodsynopsis>
<para>
This function returns the portion of
@@ -26,7 +26,7 @@
</para>
<para>
If <parameter>needle</parameter> contains more than one
- character, only the first is used. This behavior is different from that
+ character, only the first is used in PHP 4. This behavior is different from that
of <function>strchr</function>.
</para>
<para>