我在使用 PHP 对从 1 开始的整数进行排序到某个值时遇到问题,其中排序基于选定的整数,其值介于 1 和某个值之间。
这是我希望该功能的外观:
function sort_integers($count, $selected_value){
....sort()...?
}
因此,如果$count=7
and you $selected_value=3
,则该sort_integers()
函数将返回:
3,4,5,6,7,1,2
如果$count=4
and you $selected_value=2
,那么sort_integers()
函数将返回:
2, 3, 4, 1
我想我需要一个递增的第三个变量,以便我可以进行比较,但我的头开始受伤思考如何完成。想法?