PHPize Online / SQLize Online  /  SQLtest Online

A A A
Share      Blog   Popular
Copy Format Clear
Copy Clear
Copy Format Clear
<?php $input = [ ['stock_type' => 'tests'], ['stock_name' => 'test', 'one_more_key' => 'one_more_value'] ]; $result = []; foreach($input as $i) { $result = array_merge($result, $i); } var_export($result);
Show:  
Copy Clear