如何对 Laravel 5.3 中包含非拉丁字符的 UTF-8 字符串集合进行排序?

How to sort a collection of UTF-8 strings containing non-Latin chars in Laravel 5.3?

伙计们,我想 排序 嵌套 collection by string alphabeticaly:

$collection = collect([
    ["name"=>"maroon"],
    ["name"=>"zoo"],
    ["name"=>"ábel"],
    ["name"=>"élof"]
])->sortBy("name");

我希望:

1=> "ábel"
2=> "élof"
3=> "maroon"
4=> "zoo"

我得到了:

1=> "maroon"
2=> "zoo"
3=> "ábel"
4=> "élof"

我看到一些 PHP 线程,但我很好奇是否有任何 Laravel 解决方法。谢谢。

这是一个可靠的方法:

$blank = array();
$collection = collect([
    ["name"=>"maroon"],
    ["name"=>"zoo"],
    ["name"=>"ábel"],
    ["name"=>"élof"]
])->toArray();

$count = count($collection);

for ($x=0; $x < $count; $x++) { 
    $blank[$x] = $collection[$x]['name'];
}

$collator = collator_create('en_US');
var_export($blank);
collator_sort( $collator, $blank );
var_export( $blank );

dd($blank);

输出:

array (
  0 => 'maroon',
  1 => 'zoo',
  2 => 'ábel',
  3 => 'élof',
)array (
  0 => 'ábel',
  1 => 'élof',
  2 => 'maroon',
  3 => 'zoo',
)

Laravel 漂亮的输出:

array:4 [
  0 => "ábel"
  1 => "élof"
  2 => "maroon"
  3 => "zoo"
]

供个人阅读和参考: http://php.net/manual/en/class.collator.php

希望这个回答对您有所帮助,抱歉回复晚了=)

在这种情况下您不需要使用 Collat​​or class。 Laravel 的集合 sortBy 使用 asort()arsort() 内部,它有 SORT_LOCALE_STRING 标志,用于根据当前设置的语言环境进行排序。

所以,你的例子可以这样写:

setlocale(LC_COLLATE, 'fr_FR.utf8'); // No need to set this if you're doing it elsewhere

$collection = collect([
    ["name"=>"maroon"],
    ["name"=>"zoo"],
    ["name"=>"ábel"],
    ["name"=>"élof"]
])->sortBy("name", SORT_LOCALE_STRING); // Signals to arsort() to take locale into consideration

这也意味着您不必将 back-and-forth 从通用 PHP 数组转换为 Laravel 集合。

好吧,我遇到了这个问题,我是这样解决的:

$list = $Company->administrator->sortBy(function($adm){
   return iconv('UTF-8', 'ASCII//TRANSLIT', $adm->person->name);
});

我的环境是 Laravel 5.5 和 PHP 7.1