php8.5
Home/ Manual/ whatwg / url/ Uri\WhatWg\Url::parse

Uri\WhatWg\Url::parse

PHP function Edit on GitHub ✎

(PHP 8 >= 8.5.0)

Parse a URL

Description

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

Parses a URL.

Parameters

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.

Return Values

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

Examples

Uri\WhatWg\Url::parse basic example

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

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

The above example will output:

output
Valid URL: https://example.com/

See Also

  • Uri\WhatWg\Url::__construct
  • Uri\WhatWg\Url::resolve
  • Uri\Rfc3986\Uri::parse

Source: reference/uri/uri/whatwg/url/parse.xml · from the official PHP manual (php/doc-en)