Heim  >  Artikel  >  Backend-Entwicklung  >  php通过ksort()函数给关联数组按照键排序的方法,ksort数组_PHP教程

php通过ksort()函数给关联数组按照键排序的方法,ksort数组_PHP教程

WBOY
WBOYOriginal
2016-07-13 10:02:501054Durchsuche

php通过ksort()函数给关联数组按照键排序的方法,ksort数组

本文实例讲述了php通过ksort()函数给关联数组按照键排序的方法。分享给大家供大家参考。具体分析如下:

php通过ksort()函数给关联数组按照键排序,ksort函数按照关联数组的key正序排序,如果要倒序可以是哦那个krsort()函数

$first = array("x"=>5,"a"=>2,"f"=>1);
ksort( $first );
foreach ( $first as $key => $val ) {
 print "$key = $val<br />";
}

希望本文所述对大家的php程序设计有所帮助。

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/969492.htmlTechArticlephp通过ksort()函数给关联数组按照键排序的方法,ksort数组 本文实例讲述了php通过ksort()函数给关联数组按照键排序的方法。分享给大家供大...
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