wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



str_contains › WordPress Function

Seit5.9.0
Veraltetn/v
str_contains ( $haystack, $needle )
Parameter: (2)
  • (string) $haystack The string to search in.
    Erforderlich: Ja
  • (string) $needle The substring to search for in the `$haystack`.
    Erforderlich: Ja
Gibt zurück:
  • (bool) True if `$needle` is in `$haystack`, otherwise false.
Definiert in:
Codex:

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

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


Quellcode

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

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