Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

PHP strripos — Find the position of the last occurrence of a case-insensitive substring in a string

<?php
$haystack = 'ababcd';
$needle   = 'aB';

$pos      = strripos($haystack, $needle);

if ($pos === false) {
    echo "Sorry, we did not find ($needle) in ($haystack)";
} else {
    echo "Congratulations!
";
    echo "We found the last ($needle) in ($haystack) at position ($pos)";
}
?>
 
PREVIOUS NEXT
Tagged: #PHP #strripos #Find #position #occurrence #substring #string
ADD COMMENT
Topic
Name
6+5 =