Hello, I can not think of an algorithm to make a one-dimensional one from a multidimensional array. There is such a two-dimensional array:
Array ( [0] => Array ( [entry_id] => 1 [user_id] => 1 [title] => [QUOTE]123vbbbbbbbbbbbbbbbbbt[/QUOTE] [post_date] => 1459870957 [reply_count] => 0 [view_count] => 59 ) [1] => Array ( [entry_id] => 2 [user_id] => 1 [title] => ddddd [post_date] => 1459882684 [reply_count] => 0 [view_count] => 18 )
At the output, form such a one-dimensional array
Array ( [entry_id] => 1 [user_id] => 1 [title] => [QUOTE]123vbbbbbbbbbbbbbbbbbt[/QUOTE] [post_date] => 1459870957 [reply_count] => 0 [view_count] => 59 ) Array ( [entry_id] => 2 [user_id] => 1 [title] => ddddd [post_date] => 1459882684 [reply_count] => 0 [view_count] => 18 )
$arrray[0]
? better a bunch of variables $ array0, ... - splash58