diff options
Diffstat (limited to 'ext/standard/tests/strings/strrpos_variation2.phpt')
-rw-r--r-- | ext/standard/tests/strings/strrpos_variation2.phpt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/standard/tests/strings/strrpos_variation2.phpt b/ext/standard/tests/strings/strrpos_variation2.phpt index 7027c069c7..2ab0aa76b9 100644 --- a/ext/standard/tests/strings/strrpos_variation2.phpt +++ b/ext/standard/tests/strings/strrpos_variation2.phpt @@ -33,7 +33,7 @@ $needle = array( null, //boolean false - FALSE, + FALSE, false, //empty string @@ -53,14 +53,14 @@ $needle = array( '@', '@hEllo', - '12345', //decimal numeric string + '12345', //decimal numeric string '\x23', //hexadecimal numeric string '#', //hexadecimal numeric string '\101', //octal numeric string 'A', '456HEE', //numerics + chars 42, //needle as int(ASCII value of '*') - $haystack //haystack as needle + $haystack //haystack as needle ); /* loop through to get the position of the needle in haystack string */ |