update page now

Uri\WhatWg\Url::parse

(PHP 8 >= 8.5.0)

Uri\WhatWg\Url::parseParse a URL

Beschreibung

public static Uri\WhatWg\Url::parse(string $uri, ?Uri\WhatWg\Url $baseUrl = null, array &$errors = null): ?static

Parses a URL.

Parameter-Liste

uri
A valid URL string to parse (e.g. /foo or (e.g. https://example.com/foo).
baseUrl
When a String is passed, uri is applied on baseUrl, if uri is a relative-URL string. If either null is passed, or uri is a not a relative-URL string, then baseUrl doesn't have any effect.
errors
An Array to pass a list of Uri\WhatWg\UrlValidationError instances by reference to provide extended information about the errors triggered during parsing.

Rückgabewerte

Returns a Uri\WhatWg\Url instance on success, or null on failure.

Beispiele

Beispiel #1 Uri\WhatWg\Url::parse() basic example

<?php
$url
= \Uri\WhatWg\Url::parse("https://example.com");

if (
$url !== null) {
echo
"Valid URL: " . $url->toAsciiString();
} else {
echo
"Invalid URL"
}
?>

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

Valid URL: https://example.com

Siehe auch

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top