Hi! Could we please enable some services and cookies to improve your experience and our website?

PHPize Online / SQLize Online  /  SQLtest Online

A A A
Login    Share code      Blog   FAQ

Online Sandbox for SQL and PHP: Write, Run, Test, and Share SQL Queries and PHP Code

Copy Format Clear

Stuck with a problem? Got Error? Ask AI support!

Copy Clear
Copy Format Clear
<?php $arr = [ '15488' => Array ( '25239' => Array ( 'ID' => 25239, 'IBLOCK_ID' => 35, 'PARENT_ID' => 15488 ) ), '15489' => Array ( '25240' => Array ( 'ID' => 25240, 'IBLOCK_ID' => 35, 'PARENT_ID' => 15489 ) ), '15490' => Array ( '25241' => Array ( 'ID' => 25241, 'IBLOCK_ID' => 35, 'PARENT_ID' => 15490 ) ), '15492' => Array ( '25242' => Array ( 'ID' => 25242, 'IBLOCK_ID' => 35, 'PARENT_ID' => 15492 ) ), ]; $res = array_reduce( $arr, function($acc, $el) { $acc[] = current($el); return $acc; }, [] ); print_r($res);
Copy Clear