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



wp_is_stream › WordPress Function

Seit3.5.0
Veraltetn/v
wp_is_stream ( $path )
Parameter:
  • (string) $path The resource path or URL.
    Erforderlich: Ja
Gibt zurück:
  • (bool) True if the path is a stream URL.
Definiert in:
Codex:

Tests if a given path is a stream URL



Quellcode

function wp_is_stream( $path ) {
	$scheme_separator = strpos( $path, '://' );

	if ( false === $scheme_separator ) {
		// $path isn't a stream.
		return false;
	}

	$stream = substr( $path, 0, $scheme_separator );

	return in_array( $stream, stream_get_wrappers(), true );
}