Availability in `PHP 5.0`
Finds the position of the first occurrence of a string without character size resolution.
TIP:
The
stripos
function has been used in the past to check whether a string contains a substring. Since PHP 8.0, there is a nativestr_contains()
function for this.
Parameter | Data Type | Default Value | Note |
---|---|---|---|
$haystack |
string |
not | String to search |
$needle |
string |
not | Note that a needle can be a string of one or more characters. |
$offset |
int |
null | The optional offset parameter allows you to specify which character in the haystack to start searching for. The returned position is still relative to the start of the stack. |
int
- returns the position where the found substring starts.
If the substring is not found in the searched string, return false
.
Official stripos documentation
Jan Barášek Více o autorovi
Autor článku pracuje jako seniorní vývojář a software architekt v Praze. Navrhuje a spravuje velké webové aplikace, které znáte a používáte. Od roku 2009 nabral bohaté zkušenosti, které tímto webem předává dál.
Rád vám pomůžu:
Články píše Jan Barášek © 2009-2024 | Kontakt | Mapa webu
Status | Aktualizováno: ... | en