I don't know how to express this in english properly, because this question looks very much like a duplcate of this, still I don't mean the same thing. I guess that is also the reason why I can't find any similar question, so appologies in advance as this could be a duplicate.
I want to create a function that does the following:
function reorder($arr,$number)
$arr = array('one','two','three','four','five')
reorder($arr, 'two') => 'two','three','four','five','one'
reorder($arr, 'four') => 'four','five','one','two','three'
reorder($arr, 'five') => 'five','one','two','three','four'
etc...
thanks!