convert multidimensional array to single array php
$singleArray = [];
foreach ($parentArray as $childArray)
{
foreach ($childArray as $value)
{
$singleArray[] = $value;
}
}
convert multidimensional array to single array php
$singleArray = [];
foreach ($parentArray as $childArray)
{
foreach ($childArray as $value)
{
$singleArray[] = $value;
}
}
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]"
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us