<?php $arr = [ ['id' => 12, 'name' => 'Martin', 'cellphone' => '0019949437'], ['id' => 15, 'name' => 'Alex', 'cellphone' => "00183847394"] ]; function unsetCellPhone($u){ unset($u['cellphone']); return $u; } $res = array_map("unsetCellPhone", $arr); print_r($res);
You have javascript disabled. You will not be able to edit any code.