php multidimensional array push code example

Example 1: php implode multidimensional array

$users = [
	'users' => ['[email protected]','[email protected]'],
	'admins' => ['[email protected]', '[email protected]']
];

// function to convert array of arrays to string
function implodeArrayofArrays($array, $glue  = ', ') {
        $output = '';
        foreach ($array as $subarray) {
            $output .= implode($separator, $subarray);
        }
        return $output;
}

echo implodeArrayofArrays($users);

// "[email protected], [email protected], [email protected], [email protected]"

Example 2: convert multidimensional array to single array php

$singleArray = []; 
foreach ($parentArray as $childArray) 
{ 
    foreach ($childArray as $value) 
    { 
    $singleArray[] = $value; 
    } 
}

Tags:

Php Example