📜  PHP Ds\Sequence 函数完整参考

📅  最后修改于: 2022-05-13 01:56:51.941000             🧑  作者: Mango

PHP Ds\Sequence 函数完整参考

序列用于以单一和线性维度的方式排列值。在某些语言中,序列指的是列表。该序列类似于用作增量整数键的数组,如下所示:

  • 序列的索引值为 [0, 1, 2, ..., size – 1],其中 size 表示数组的大小。
  • 通过使用索引值访问序列元素,因此它允许通过范围 [0, size – 1] 中的索引访问值。
  • DS\Sequence 是PHP 7 中的高效数据结构。它是数组的替代品。

要求:扩展和兼容性 polyfill 都需要PHP 7。

安装:使用 PECL 扩展安装数据结构的最简单方法。

pecl install ds

数据结构 DS\Sequence 的完整列表如下:

  • PHP | Ds\Sequence allocate()函数
  • PHP | Ds\Sequence apply()函数
  • PHP | Ds\序列容量()函数
  • PHP | Ds\Sequence contains()函数
  • PHP | Ds\Sequence filter()函数
  • PHP | Ds\Sequence find()函数
  • PHP | Ds\Sequence first()函数
  • PHP | Ds\Sequence get()函数
  • PHP | Ds\Sequence insert()函数
  • PHP | Ds\Sequence join()函数
  • PHP | Ds\Sequence last()函数
  • PHP | Ds\Sequence map()函数
  • PHP | Ds\Sequence 合并()函数
  • PHP | Ds\Sequence pop()函数
  • PHP | Ds\Sequence push()函数
  • PHP | Ds\Sequence reduce()函数
  • PHP | Ds\Sequence remove()函数
  • PHP | Ds\Sequence reverse()函数
  • PHP | Ds\Sequence reversed()函数
  • PHP | Ds\Sequence rotate()函数
  • PHP | Ds\Sequence set()函数
  • PHP | Ds\Sequence shift()函数
  • PHP | Ds\Sequence slice()函数
  • PHP | Ds\Sequence sort()函数
  • PHP | Ds\Sequence sorted()函数
  • PHP | Ds\Sequence sum()函数
  • PHP | Ds\Sequence unshift()函数