Heim >Backend-Entwicklung >PHP-Tutorial >php数组排序之krsort与asort函数应用举例

php数组排序之krsort与asort函数应用举例

WBOY
WBOYOriginal
2016-07-25 08:58:501130Durchsuche
  1. $my_array = array("a" => "Dog", "b" => "Cat", "c" => "Horse");
  2. krsort($my_array);
  3. print_r($my_array);
  4. ?>
复制代码

输出:

  1. $my_array = array("a" => "Dog", "b" => "Cat", "c" => "Horse");

  2. asort($my_array);

  3. print_r($my_array);
  4. ?>
复制代码

输出:

Array ( => Cat [a] => Dog [c] => Horse )

>>> 更多内容,请查看 php数组排序方法大全



Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn