I have this array
$a = Array("a","b","c","d");
I want to rotate b, c, d. That is, B is placed where d and the position is lowered.
Example:
abcd
acdb
adbc
I've been here for the moment.
$a = Array("a","b","c","d");
print_r($a);
$n...
asked by
06.07.2017 / 12:00