PHP: strripos() function
Description
The strripos() function is used to find the position of the last occurrence of a case-insensitive string in a string.
Version:
(PHP 5)
Syntax:
strripos(main_string, search_string, start_position)
Parameters:
Name | Description | Required / Optional |
Type |
---|---|---|---|
main_string | Specifies the string to examined. | Required | String |
search_string | Specifies the string to search with. | Required | String |
start_position | Sets the starting position of the first string. | Optional | Integer |
Return value:
Returns the numerical position of the last occurrence of seacrh_string.
Value Type: Integer.
Pictorial Presentation
Example:
<?php$main_string='w3resource.com';echo strripos($main_string, 'COM');?>
Output:
11
View the example in the browser
See also
PHP: Tips of the Day
Constants can be defined inside classes using a const keyword.
Example:
class Foo { const BAR_TYPE = "bar"; // reference from inside the class using self:: public function myMethod() { return self::BAR_TYPE; } } // reference from outside the class using <ClassName>:: echo Foo::BAR_TYPE;
Output:
bar
This is useful to store types of items.
<?php class Logger { const LEVEL_INFO = 1; const LEVEL_WARNING = 2; const LEVEL_ERROR = 3; // we can even assign the constant as a default value public function log($message, $level = self::LEVEL_INFO) { echo "Message level " . $level . ": " . $message; } } $logger = new Logger(); $logger->log("Info"); // Using default value $logger->log("Warning", $logger::LEVEL_WARNING); // Using var $logger->log("Error", Logger::LEVEL_ERROR); // using class
Output:
- Weekly Trends
- Java Basic Programming Exercises
- SQL Subqueries
- Adventureworks Database Exercises
- C# Sharp Basic Exercises
- SQL COUNT() with distinct
- JavaScript String Exercises
- JavaScript HTML Form Validation
- Java Collection Exercises
- SQL COUNT() function
- SQL Inner Join
- JavaScript functions Exercises
- Python Tutorial
- Python Array Exercises
- SQL Cross Join
- C# Sharp Array Exercises
We are closing our Disqus commenting system for some maintenanace issues. You may write to us at reach[at]yahoo[dot]com or visit us at Facebook