我有一个具有3个属性的对象。我想输入数字1,2或3(0,1或2也很好),并根据其属性值按一个数字的升序对对象进行排序。
这是我的对象的样子:
var_dump($obj);
array(3) {
[0]=> object(stdClass)#25 (92) {
["file_id"]=> string(1) "6"
["name"]=> string(1) "1st item"
}
[1]=> object(stdClass)#26 (92) {
["file_id"]=> string(1) "7"
["name"]=> "2nd item"
}
[2]=> object(stdClass)#27 (92) {
["file_id"]=> string(1) "8"
["name"]=> "3rd item"
}
}
如果我输入1,那么输出将如下所示:
file_id name
6 1st item
7 2nd item
8 3rd item
如果输入2,则输出为:
7 2nd item
8 3rd item
6 1st item
如果输入3,则输出为:
8 3rd item
6 1st item
7 2nd item
这个问题几乎与一个I asked earlier on Stackoverflow相同,唯一的例外是我需要sort()
file_id
值的索引位置,而不是file_id
1}}重视自己。即,我需要排序1,2,3而不是6,7,8。
如果你对这个问题特别感兴趣(是的,我意识到这不太可能),我很想知道输出中25
和92
代表的数字:{{1 }}
答案 0 :(得分:2)
我认为您正在寻找usort
写3个比较函数,对于每个属性1,根据输入值切换,使用比较函数
编辑:
数字是PHP内部对象id(#25
)和对象的大小。
快速示例:
function compare_1($a, $b) {
return strcmp($a->file_id, $b->file_id);
}
// compare_2, compare_3 accordingly as needed with your objects
switch ($input) {
case 1:
$compareFunctionName = 'compare_1';
break;
case 2:
$compareFunctionName = 'compare_2';
break;
case 3:
$compareFunctionName = 'compare_3';
break;
default:
throw new Exception('wrong Parameter: input is ' . $input);
}
usort($objectArray, $compareFunctionName);
var_dump($objectArray);
答案 1 :(得分:1)
我理解你的问题在按某些属性对数组进行排序后,你想要旋转数组,以便例如数组(1,2,3,4)变为(3,4,1,2) 我在这个例子中使用字符串文字作为数组成员,切换到对象是微不足道的。
<?php
$sortedData = array('A', 'B', 'C', 'D', 'E'); // getting an array like this has been solved by the answers to your previous question
$foo = rotate($sortedData, 2);
var_dump($foo);
function rotate($source, $n) {
// could use some pre-checks...
return array_merge(
array_slice($source, $n, NULL, true),
array_slice($source, 0, $n, true)
);
}
打印
array(5) {
[0]=>
string(1) "C"
[1]=>
string(1) "D"
[2]=>
string(1) "E"
[3]=>
string(1) "A"
[4]=>
string(1) "B"
}
答案 2 :(得分:0)
这是一个完成此任务的简单算法
步骤1:从数组array_search()和unset函数
中删除输入索引的值步骤2:使用排序功能
对数组进行排序步骤3:使用推/弹功能
将删除的值添加到数组顶部有关阵列功能的更多信息,请访问http://www.phpsyntax.blogspot.com