<?php

$arr = range(1, 5);
 
foreach($arr as &$item) {
    $item *= 2;
}

print_r($arr);