使用Arrayu multisort对数据重新排序
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用Arrayu multisort对数据重新排序相关的知识,希望对你有一定的参考价值。
This snippet allows an array or multiple arrays to be re-sorted using multiple key fields.
$rows=$result->fetchAll(PDO::FETCH_ASSOC); $row2=$rows; foreach($rows as $r) { $rProp[]=$r['properties']; $rSpec[]=$r['specificity']; $rDecl[]=$r['declaration']; $rDecl1[]=$r['declaration']; } FunctionToWriteReport('CSS Rules by Specificty',$rows); FunctionToWriteReport('Rules by Declaration',$rows);
以上是关于使用Arrayu multisort对数据重新排序的主要内容,如果未能解决你的问题,请参考以下文章
PHP数组排序函数array_multisort()函数详解
PHP array_multisort—对多个数组或多维数组进行排序