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