<?php

function double($value, $key, $signal) {
    echo 2*$signal*$value, PHP_EOL;
}

$array = [1, 2, 3, 4];
array_walk($array, "double", -1);