<?php $sections = [ ['direction' => 'up'], ['direction' => 'down'], ['direction' => 'up'], ]; $data = ['up' => [], 'down' => []]; foreach($sections as $section) { array_push( $data[$section['direction']], [1, 25] ); } var_export($data);
You have javascript disabled. You will not be able to edit any code.