原代码:
$web =List::Model()->findAll(array("condition"=>"id = 8}","order"=>"id asc"));
$webs='';
foreach($web as $k=>$v){
foreach($v as $ks=>$vs){
$webs[$k][$ks]=$vs;
}
}
Response::json($webs);
求一段优雅高效的数组排序算法。
貌似最简单的是:
$web =List::Model()->findAll(array("condition"=>"id = 8}","order"=>"id asc"));
Response::json(json_decode(CJSON::encode($web),TRUE));
不知道这么转换会不会有其它问题?
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
你先用markdown编辑下代码吧
我帮你展示下
http://www.cnblogs.com/imxiu/p/3474367.html