ArrayIterator::natsort
(PHP 5 >= 5.2.0, PHP 7, PHP 8)
ArrayIterator::natsort — Sort entries naturally
說明
public ArrayIterator::natsort(): bool
Sort the entries by values using a "natural order" algorithm.
注意:
如果兩個成員完全相同,那麼它們將保持原來的順序。 在 PHP 8.0.0 之前,它們在排序陣列中的相對順序是未定義的。
參數
此函式沒有參數。
返回值
總是返回 true
。
參見
- ArrayIterator::asort() - Sort entries by values
- ArrayIterator::ksort() - Sort entries by keys
- ArrayIterator::natsort()
- ArrayIterator::uasort() - Sort with a user-defined comparison function and maintain index association
- ArrayIterator::uksort() - Sort by keys using a user-defined comparison function
- natsort() - 用“自然排序”演算法對陣列排序