update page now

Uri\WhatWg\Url::parse

(PHP 8 >= 8.5.0)

Uri\WhatWg\Url::parseParse a URL

Açıklama

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

Parses a URL.

Bağımsız Değişkenler

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.

Dönen Değerler

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

Örnekler

Örnek 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"
}
?>

Yukarıdaki örneğin çıktısı:

Valid URL: https://example.com

Ayrıca Bakınız

add a note

User Contributed Notes

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