3v4l.org

run code in 300+ PHP versions simultaneously
<?php class A1 { public function rows() { $a = array(); $a[] = array('parent_id' => 10, 'category_id' => 13, 'name' => 'id13'); $a[] = array('parent_id' => 8, 'category_id' => 12, 'name' => 'id12'); $a[] = array('parent_id' => 7, 'category_id' => 11, 'name' => 'id11'); $a[] = array('parent_id' => 7, 'category_id' => 10, 'name' => 'id10'); $a[] = array('parent_id' => 0, 'category_id' => 9, 'name' => 'id9'); $a[] = array('parent_id' => 0, 'category_id' => 8, 'name' => 'id8'); $a[] = array('parent_id' => 0, 'category_id' => 7, 'name' => 'id7'); return $a; } } $query = new A1; $categoryArray = array(); foreach($query->rows() as $row) { if(isset($categoryArray[$row['category_id']])) { $categoryArray[$row['parent_id']][$row['category_id']] = $categoryArray[$row['category_id']]; unset($categoryArray[$row['category_id']]); } else { $categoryArray[$row['parent_id']][$row['category_id']] = $row['name']; } } //echo 'first stage <br>'; //print_r($categoryArray); // second stage getRow($categoryArray()); function getRow($array){ foreach($array as $row){ if(is_array($row)) { echo('<ul>'); getRow($row); echo('</ul>'); } else { echo('<li>'.$row.'</li>'); } } }
Output for git.master, git.master_jit, rfc.property-hooks
Fatal error: Uncaught Error: Array callback must have exactly two elements in /in/C39n8:36 Stack trace: #0 {main} thrown in /in/C39n8 on line 36
Process exited with code 255.

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
73.7 ms | 401 KiB | 8 Q