str_contains
Description
The str_contains of String for PHP determine if a string contains a given substring.
Syntax
str_contains(string $haystack, string $needle): bool
Parameters
haystack
The string to search in.
needle
The substring to search for in the haystack.
Return
Returns true if needle is in haystack, false otherwise.
Examples
1
<? $haystack = "haystack needle haystack"; $needle = "needle"; $return = str_contains($haystack, $needle); var_export($return); ?>
true
2
<? $haystack = "haystack"; $needle = "needle"; $return = str_contains($haystack, $needle); var_export($return); ?>
false
3
<? $haystack = "empty needle returns true"; $needle = ""; $return = str_contains($haystack, $needle); var_export($return); ?>
true
4
<? $haystack = "case Case CASE"; $needle1 = "case"; $needle2 = "Case"; $needle3 = "CASE"; $return1 = str_contains($haystack, $needle1); $return2 = str_contains($haystack, $needle2); $return3 = str_contains($haystack, $needle3); var_export($return1); var_export($return2); var_export($return3); ?>
truetruetrue
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_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
- strpos
- strrchr
- strrev
- strripos
- strrpos
- strspn
- strstr
- strtok
- strtolower
- strtoupper
- strtr
- substr
- substr_compare
- substr_count
- substr_replace
- trim
- ucfirst
- ucwords
- vfprintf
- vprintf
- vsprintf
- wordwrap