<?php

function double($x) {
    echo 2*$x, PHP_EOL;
}

$array = [1, 2, 3, 4];

array_walk($array, "double");