wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
wp_parse_url › WordPress Function
Seit4.4.0
Veraltetn/v
› wp_parse_url ( $url, $component = -1 )
Parameter: (2) |
|
Links: | |
Gibt zurück: |
|
Definiert in: |
|
Codex: | |
Changelog: |
|
A wrapper for PHP's parse_url() function that handles consistency in the return values across PHP versions.
Across various PHP versions, schemeless URLs containing a ":" in the query are being handled inconsistently. This function works around those differences.Quellcode
function wp_parse_url( $url, $component = -1 ) { $to_unset = array(); $url = (string) $url; if ( str_starts_with( $url, '//' ) ) { $to_unset[] = 'scheme'; $url = 'placeholder:' . $url; } elseif ( str_starts_with( $url, '/' ) ) { $to_unset[] = 'scheme'; $to_unset[] = 'host'; $url = 'placeholder://placeholder' . $url; } $parts = parse_url( $url ); if ( false === $parts ) { // Parsing failure. return $parts; } // Remove the placeholder values. foreach ( $to_unset as $key ) { unset( $parts[ $key ] ); } return _get_component_from_parsed_url_array( $parts, $component ); }