Home >Backend Development >PHP Tutorial >How to sort associative arrays in php

How to sort associative arrays in php

墨辰丷
墨辰丷Original
2018-06-11 15:19:451810browse

This article mainly introduces the method of quick sorting of php associative arrays, involving related skills of php array sorting, which is very practical. Friends in need can refer to it

The example of this article tells about the quick sorting of php associative arrays Sorting method. Share it with everyone for your reference. The details are as follows:

<?php
 function qsort($a,$f) {
 qsort_do(&$a,0,Count($a)-1,$f);
 }
 function qsort_do($a,$l,$r,$f) {
 if ($l < $r) {
   qsort_partition(&$a,$l,$r,&$lp,&$rp,$f);
   qsort_do(&$a,$l,$lp,$f);
   qsort_do(&$a,$rp,$r,$f);
  }
 }
 function qsort_partition($a,$l,$r,$lp,$rp,$f) {
 $i = $l+1;
 $j = $l+1;
  while ($j <= $r) {
   if ($f($a[$j],$a[$l])) {
    $tmp = $a[$j];
    $a[$j] = $a[$i];
    $a[$i] = $tmp;
    $i++;
   }
   $j++;
 }
 $x = $a[$l];
 $a[$l] = $a[$i-1];
 $a[$i-1] = $x;
 $lp = $i - 2;
 $rp = $i;
}
?>

Summary: The above is the entire content of this article, I hope it will be helpful to everyone's study.

Related recommendations:

The addition, deletion, modification and query function implemented by mysql in php

php implements change based on cookies Skin method

php method for string operation

The above is the detailed content of How to sort associative arrays in php. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn