3v4l.org

run code in 300+ PHP versions simultaneously
<?php $adjuntos = array('idAdjunto' => 1, 'tamano' => 'x'); array_walk($adjuntos, function(&$item, $key){ $key = 'ADJUNTO_' . $key; }); var_dump($adjuntos); die; var_dump(array_shift($adjuntos)); die; $res = array_filter($adjuntos, function($item) { return $item['idAdjunto'] == 1; }); var_dump($res || false);

preferences:
44.82 ms | 402 KiB | 5 Q