Codice PHP:
function shifta(&$array) {
  
$elemento array_shift($array);
  
array_push($array$elemento);
  return 
$elemento;