<?php

$arr = [
		['foo', 'bar', 'hello'],
		['world', 'love'],
		['stack', 'overflow', 'yep', 'man', 'wow']
	];

$new = [];
while($item = array_shift($arr)){
	array_push($new, ...$item);
}

print_r($new);