strpos
Description
Syntax
strpos( string $haystack, string $needle, int $offset = 0 ): int|false
Parameters
haystack
The string to search in.
needle
The string to search for.
offset
If zero or positive, the search will start this number of characters counted from the beginning of the string.
If negative, the search will start this number of characters counted from the end of the string.
Return
Returns the position of where the needle exists relative to the beginning of the haystack string (independent of offset). Also note that string positions start at 0, and not 1.
Returns false if the needle was not found.
WARNING: This function may return Boolean false, but may also return a non-Boolean value which evaluates to false. Use the === operator for testing the return value of this function.
Examples
1 · haystack needle · string
<? $haystack = 'CASEcase'; $needle = 's'; $return = strpos($haystack, $needle); echo $return; ?>
6
2 · haystack needle · chr
<? $haystack = 'CASEcase'; $needle = chr(115); $return = strpos($haystack, $needle); echo $return; ?>
6
3 · offset · Negative
<? $haystack = 'CASEcase'; $needle = 's'; $offset = -4; $return = strpos($haystack, $needle, $offset); echo $return; ?>
6
4 · offset · Non-negative
<? $haystack = 'CASEcase'; $needle = 's'; $offset = 4; $return = strpos($haystack, $needle, $offset); echo $return; ?>
6
5 · Return
<? // use identity operator (===) instead of comparison operator (==) to test return $haystack = 'abc'; $needle = 'a'; $return = strpos($haystack, $needle); if($return === false) { echo "not found"; } else { echo "found"; } ?>
found
Links
Related
String
- addcslashes
- addslashes
- bin2hex
- chop
- chr
- chunk_split
- convert_uudecode
- convert_uuencode
- count_chars
- crc32
- crypt
- echo
- explode
- fprintf
- get_html_translation_table
- hebrev
- hebrevc
- hex2bin
- html_entity_decode
- htmlentities
- htmlspecialchars
- htmlspecialchars_decode
- implode
- join
- lcfirst
- levenshtein
- localeconv
- ltrim
- md5
- md5_file
- metaphone
- nl_langinfo
- nl2br
- number_format
- ord
- parse_str
- printf
- quoted_printable_decode
- quoted_printable_encode
- quotemeta
- rtrim
- setlocale
- sha1
- sha1_file
- similar_text
- soundex
- sprintf
- sscanf
- str_contains
- str_decrement
- str_ends_with
- str_getcsv
- str_increment
- str_ireplace
- str_pad
- str_repeat
- str_replace
- str_rot13
- str_shuffle
- str_split
- str_starts_with
- str_word_count
- strcasecmp
- strchr
- strcmp
- strcoll
- strcspn
- strip_tags
- stripcslashes
- stripos
- stripslashes
- stristr
- strlen
- strnatcasecmp
- strnatcmp
- strncasecmp
- strncmp
- strpbrk
- strrchr
- strrev
- strripos
- strrpos
- strspn
- strstr
- strtok
- strtolower
- strtoupper
- strtr
- substr
- substr_compare
- substr_count
- substr_replace
- trim
- ucfirst
- ucwords
- vfprintf
- vprintf
- vsprintf
- wordwrap