diff --git a/reference/strings/functions/strpos.xml b/reference/strings/functions/strpos.xml
index 6b7cc982f3..6e4d9a4d04 100644
--- a/reference/strings/functions/strpos.xml
+++ b/reference/strings/functions/strpos.xml
@@ -17,9 +17,7 @@
Returns the numeric position of the first occurrence of
needle in the haystack
- string. Unlike the strrpos before PHP 5, this
- function can take a full string as the needle
- parameter and the entire string will be used.
+ string.
@@ -31,7 +29,7 @@
haystack
- The string to search in
+ The string to search in.
diff --git a/reference/strings/functions/strripos.xml b/reference/strings/functions/strripos.xml
index 524b41384c..e0f6f1a602 100644
--- a/reference/strings/functions/strripos.xml
+++ b/reference/strings/functions/strripos.xml
@@ -15,8 +15,8 @@
intoffset0
- Find position of last occurrence of a case-insensitive string in a string.
- Unlike strrpos, strripos is
+ Find position of last occurrence of a string in a string. Unlike
+ strrpos, strripos is
case-insensitive.
@@ -29,7 +29,7 @@
haystack
- The string to search in
+ The string to search in.
@@ -37,8 +37,8 @@
needle
- Note that the needle may be a string of one or
- more characters.
+ If needle is not a string, it is converted
+ to an integer and applied as the ordinal value of a character.
@@ -46,13 +46,9 @@
offset
- The offset parameter may be specified to begin
- searching an arbitrary number of characters into the string.
-
-
- Negative offset values will start the search at
- offset characters from the
- start of the string.
+ If specified, search will stop this number of characters counted from the
+ beginning of the string. If the value is negative, search will instead start
+ from that many characters from the end of the string.
diff --git a/reference/strings/functions/strrpos.xml b/reference/strings/functions/strrpos.xml
index 17f66bdaf1..e390a83793 100644
--- a/reference/strings/functions/strrpos.xml
+++ b/reference/strings/functions/strrpos.xml
@@ -38,8 +38,7 @@
If needle is not a string, it is converted
- to an integer and applied as the ordinal value of a character. The
- needle can only be a single character in PHP 4.
+ to an integer and applied as the ordinal value of a character.
@@ -47,9 +46,9 @@
offset
- May be specified to begin searching an arbitrary number of characters into
- the string. Negative values will stop searching at an arbitrary point
- prior to the end of the string.
+ If specified, search will stop this number of characters counted from the
+ beginning of the string. If the value is negative, search will instead start
+ from that many characters from the end of the string.