wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



str_contains › WordPress Function

Depuis5.9.0
Dépréciéen/a
str_contains ( $haystack, $needle )
Paramètres: (2)
  • (string) $haystack The string to search in.
    Requis: Oui
  • (string) $needle The substring to search for in the `$haystack`.
    Requis: Oui
Retourne:
  • (bool) True if `$needle` is in `$haystack`, otherwise false.
Défini(e) dans:
Codex:

Polyfill for `str_contains()` function added in PHP 8.0.

Performs a case-sensitive check indicating if needle is contained in haystack.


Source

function str_contains( $haystack, $needle ) {
		if ( '' === $needle ) {
			return true;
		}

		return false !== strpos( $haystack, $needle );
	}
}