PHP code example of aviator / array-fold
1. Go to this page and download the library: Download aviator/array-fold library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
aviator / array-fold example snippets
$array = [
'level1' [
'some' => 'value',
'someOther' => 'value',
'level2' => [
'someOther' => 'value'
]
]
];
// Using keys
echo array_fold($array);
/*
[
'some' => 'value',
'someOther' => 'value',
]
*/
// Ignoring keys
echo array_fold($array, false);
/*
[
'value',
'value',
'value',
]
*/