PHP 8.4.24 Released!

The Uri\WhatWg\UrlValidationError class

(PHP 8 >= 8.5.0)

Вступ

Provides details about errors that were detected when parsing a URL with Uri\WhatWg\Url.

Короткий огляд класу

namespace Uri\WhatWg;
final readonly class UrlValidationError {
/* Властивості */
public string $context;
public bool $failure;
/* Методи */
public function __construct(string $context, Uri\WhatWg\UrlValidationErrorType $type, bool $failure)
}

Властивості

context
The input URL at the point where the error was detected.
type
The type of error.
failure
If true the error caused the URL to be rejected as invalid. If false the error is a soft error that was automatically corrected during parsing.

Зміст

add a note

User Contributed Notes

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