PHP 8.6.0 Alpha 2 available for testing

The IntlListFormatter class

(No version information available, might only be in Git)

简介

Formats, orders, and punctuates a list of items according to locale-specific rules. Requires ICU 67 or later.

类摘要

class IntlListFormatter {
/* 常量 */
public const int TYPE_AND;
public const int TYPE_OR;
public const int TYPE_UNITS;
public const int WIDTH_WIDE;
public const int WIDTH_SHORT;
public const int WIDTH_NARROW;
/* 方法 */
public function format(array $list): string|false
}

预定义常量

IntlListFormatter::TYPE_AND
Formats a list using conjunction (e.g. "A, B, and C").
IntlListFormatter::TYPE_OR
Formats a list using disjunction (e.g. "A, B, or C").
IntlListFormatter::TYPE_UNITS
Formats a list of units (e.g. "3 ft, 7 in").
IntlListFormatter::WIDTH_WIDE
Uses the widest (most verbose) list format, typically with conjunctions spelled out in full.
IntlListFormatter::WIDTH_SHORT
Uses a short list format, typically using abbreviations.
IntlListFormatter::WIDTH_NARROW
Uses the narrowest list format, with minimal punctuation.

更新日志

版本 说明
8.5.0 The class was added.

目录

添加备注

用户贡献的备注

此页面尚无用户贡献的备注。
To Top