<?php $static = 90; $array = [ 'checklists' => [ 20, 50, 35, 23, 24, 21, 22, 27, 25 ] ]; $array['checklists'] = array_map(function($v) use($static) { return [$static, $v]; }, $array['checklists']); var_dump($array);
You have javascript disabled. You will not be able to edit any code.