didou Wed May 28 08:00:30 2003 EDT
Modified files:
/phpdoc/en/reference/strings/functions strpos.xml strripos.xml
strrpos.xml
Log:
example showing case insensitivity for strripos and some see also
Index: phpdoc/en/reference/strings/functions/strpos.xml
diff -u phpdoc/en/reference/strings/functions/strpos.xml:1.3
phpdoc/en/reference/strings/functions/strpos.xml:1.4
--- phpdoc/en/reference/strings/functions/strpos.xml:1.3 Thu Feb 20 11:40:20
2003
+++ phpdoc/en/reference/strings/functions/strpos.xml Wed May 28 08:00:30 2003
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.3 $ -->
+<!-- $Revision: 1.4 $ -->
<!-- splitted from ./en/functions/strings.xml, last change in rev 1.8 -->
<refentry id="function.strpos">
<refnamediv>
@@ -66,9 +66,13 @@
the beginning of <parameter>haystack</parameter>.
</para>
<para>
- See also <function>strrpos</function>, <function>stripos</function>,
- <function>strrchr</function>, <function>substr</function>,
- <function>stristr</function>, and <function>strstr</function>.
+ See also <function>strrpos</function>,
+ <function>stripos</function>,
+ <function>strripos</function>,
+ <function>strrchr</function>,
+ <function>substr</function>,
+ <function>stristr</function>, and
+ <function>strstr</function>.
</para>
</refsect1>
</refentry>
Index: phpdoc/en/reference/strings/functions/strripos.xml
diff -u phpdoc/en/reference/strings/functions/strripos.xml:1.1
phpdoc/en/reference/strings/functions/strripos.xml:1.2
--- phpdoc/en/reference/strings/functions/strripos.xml:1.1 Tue May 27 20:28:35
2003
+++ phpdoc/en/reference/strings/functions/strripos.xml Wed May 28 08:00:30 2003
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.1 $ -->
+<!-- $Revision: 1.2 $ -->
<refentry id="function.strripos">
<refnamediv>
<refname>strripos</refname>
@@ -35,7 +35,7 @@
<![CDATA[
<?php
$haystack = 'ababcd';
-$needle = 'ab';
+$needle = 'aB';
$pos = strripos($haystack, $needle);
@@ -49,7 +49,7 @@
/* Outputs:
Congratulations!
- We found the last (ab) in (ababcd) at position (2)
+ We found the last (aB) in (ababcd) at position (2)
*/
?>
Index: phpdoc/en/reference/strings/functions/strrpos.xml
diff -u phpdoc/en/reference/strings/functions/strrpos.xml:1.2
phpdoc/en/reference/strings/functions/strrpos.xml:1.3
--- phpdoc/en/reference/strings/functions/strrpos.xml:1.2 Wed Apr 17 02:44:23
2002
+++ phpdoc/en/reference/strings/functions/strrpos.xml Wed May 28 08:00:30 2003
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.2 $ -->
+<!-- $Revision: 1.3 $ -->
<!-- splitted from ./en/functions/strings.xml, last change in rev 1.8 -->
<refentry id="function.strrpos">
<refnamediv>
@@ -56,8 +56,11 @@
</para>
<para>
See also <function>strpos</function>,
- <function>strrchr</function>, <function>substr</function>,
- <function>stristr</function>, and <function>strstr</function>.
+ <function>strripos</function>,
+ <function>strrchr</function>,
+ <function>substr</function>,
+ <function>stristr</function>, and
+ <function>strstr</function>.
</para>
</refsect1>
</refentry>
--
PHP Documentation Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php