2018-07-30 21:24:26 -04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @file src/Util/Arrays.php
|
|
|
|
* @author Roland Haeder<https://f.haeder.net/profile/roland>
|
|
|
|
*/
|
|
|
|
namespace Friendica\Util;
|
|
|
|
|
|
|
|
/**
|
2020-01-19 01:05:23 -05:00
|
|
|
* Array utility class
|
2018-07-30 21:24:26 -04:00
|
|
|
*/
|
|
|
|
class Arrays
|
|
|
|
{
|
|
|
|
/**
|
2020-01-19 01:05:23 -05:00
|
|
|
* Private constructor
|
2018-07-30 21:24:26 -04:00
|
|
|
*/
|
|
|
|
private function __construct () {
|
|
|
|
// Utitlities don't have instances
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @briefs Implodes recursively a multi-dimensional array where a normal implode() will fail.
|
|
|
|
*
|
|
|
|
* @param array $array Array to implode
|
|
|
|
* @param string $glue Glue for imploded elements
|
|
|
|
* @return string String with elements from array
|
|
|
|
*/
|
|
|
|
public static function recursiveImplode (array $array, $glue) {
|
|
|
|
// Init returned string
|
|
|
|
$string = '';
|
|
|
|
|
|
|
|
// Loop through all records
|
|
|
|
foreach ($array as $element) {
|
|
|
|
// Is an array found?
|
|
|
|
if (is_array($element)) {
|
|
|
|
// Invoke cursively
|
|
|
|
$string .= '{' . self::recursiveImplode($element, $glue) . '}' . $glue;
|
|
|
|
} else {
|
|
|
|
// Append normally
|
|
|
|
$string .= $element . $glue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remove last glue
|
|
|
|
$string = trim($string, $glue);
|
|
|
|
|
|
|
|
// Return it
|
|
|
|
return $string;
|
|
|
|
}
|
|
|
|
}
|