update page now

The Uri\UriComparisonMode enum

(PHP 8 >= 8.5.0)

Введение

Specifies if the fragment component should affect the result of a URI comparison.

If the fragment is excluded from the comparison, two URIs will be compared as if neither of them has a fragment component.

Обзор перечисления

namespace Uri;
enum UriComparisonMode
{
case IncludeFragment ; //The fragment component is included in the comparison.

case ExcludeFragment ; //The fragment component is excluded from the comparison.

}
Добавить

Примечания пользователей

Пользователи ещё не добавляли примечания для страницы
To Top