From 36ace4cf045a98d1cf18e209655d2c27c671f8f2 Mon Sep 17 00:00:00 2001 From: Philip Olson Date: Wed, 28 May 2003 00:28:35 +0000 Subject: [PATCH] Initial documentation. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@128956 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/strings/functions/strripos.xml | 88 ++++++++++++++++++++++++ 1 file changed, 88 insertions(+) create mode 100644 reference/strings/functions/strripos.xml diff --git a/reference/strings/functions/strripos.xml b/reference/strings/functions/strripos.xml new file mode 100644 index 0000000000..b18eed99a4 --- /dev/null +++ b/reference/strings/functions/strripos.xml @@ -0,0 +1,88 @@ + + + + + strripos + + Find position of last occurrence of a case-insensitive string in a string + + + + Description + + intstrripos + stringhaystack + stringneedle + + + Returns the numeric position of the last occurrence of + needle in the + haystack string. Unlike + strrpos, strripos is + case-insensitive. Also note that string positions start at 0, and not + 1. + + + If needle is not found, &false; is returned. + + + &return.falseproblem; + + + + A simple <function>strripos</function> example + + +]]> + + + + + See also strrpos, + strrchr, + substr, and + stristr. + + + + +