From b6385c47903574ff4a08f1a8886b8a0cbc47b3c2 Mon Sep 17 00:00:00 2001 From: Stefan Walk Date: Sat, 25 Oct 2003 12:13:40 +0000 Subject: [PATCH] Add note about handling of numeric values in PHP5 git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@143062 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/strings/functions/strrpos.xml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/reference/strings/functions/strrpos.xml b/reference/strings/functions/strrpos.xml index b9d998b8d6..9b7af22daa 100644 --- a/reference/strings/functions/strrpos.xml +++ b/reference/strings/functions/strrpos.xml @@ -1,5 +1,5 @@ - + @@ -57,7 +57,8 @@ if (is_string($pos) && !$pos) { The needle may be a string of more than one - character as of PHP 5. + character as of PHP 5, and numbers are converted to a string instead of + being applied as the ordinal value of a character. See also strpos,