123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 |
- <?php
- /* For licensing terms, see /license.txt */
- /**
- * This is the array library for Chamilo.
- * Include/require it in your code to use its functionality.
- *
- * @package chamilo.library
- */
- /**
- * Removes duplicate values from a dimensional array.
- *
- * @param array $array dimensional array
- *
- * @return array an array with unique values
- */
- function array_unique_dimensional($array)
- {
- if (!is_array($array)) {
- return $array;
- }
- foreach ($array as &$myvalue) {
- $myvalue = serialize($myvalue);
- }
- $array = array_unique($array);
- foreach ($array as &$myvalue) {
- $myvalue = UnserializeApi::unserialize('not_allowed_clases', $myvalue);
- }
- return $array;
- }
- /**
- * Sort multidimensional arrays.
- *
- * @param array unsorted multidimensional array
- * @param string key to be sorted
- *
- * @return array result array
- *
- * @author found in http://php.net/manual/en/function.sort.php
- */
- function msort($array, $id = 'id', $order = 'desc')
- {
- if (empty($array)) {
- return $array;
- }
- $temp_array = [];
- while (count($array) > 0) {
- $lowest_id = 0;
- $index = 0;
- foreach ($array as $item) {
- if ($order == 'desc') {
- if ($item[$id] < $array[$lowest_id][$id]) {
- $lowest_id = $index;
- }
- } else {
- if (isset($item[$id]) && $item[$id] > $array[$lowest_id][$id]) {
- $lowest_id = $index;
- }
- }
- $index++;
- }
- $temp_array[] = $array[$lowest_id];
- $array = array_merge(
- array_slice($array, 0, $lowest_id),
- array_slice($array, $lowest_id + 1)
- );
- }
- return $temp_array;
- }
- /**
- * @param $array
- *
- * @return mixed
- */
- function utf8_sort($array)
- {
- $old_locale = setlocale(LC_ALL, 0);
- $code = api_get_language_isocode();
- $locale_list = [$code.'.utf8', 'en.utf8', 'en_US.utf8', 'en_GB.utf8'];
- $try_sort = false;
- foreach ($locale_list as $locale) {
- $my_local = setlocale(LC_COLLATE, $locale);
- if ($my_local) {
- $try_sort = true;
- break;
- }
- }
- if ($try_sort) {
- uasort($array, 'strcoll');
- }
- setlocale(LC_COLLATE, $old_locale);
- return $array;
- }
- /**
- * @param array $array
- * @param string $separator
- *
- * @return string
- */
- function array_to_string($array, $separator = ',')
- {
- if (empty($array)) {
- return '';
- }
- return implode($separator.' ', $array);
- }
- /**
- * @param array $array
- *
- * @return array
- */
- function array_flatten(array $array)
- {
- $flatten = [];
- array_walk_recursive(
- $array,
- function ($value) use (&$flatten) {
- $flatten[] = $value;
- }
- );
- return $flatten;
- }
- /**
- * Shuffles an array keeping the associations.
- *
- * @param $array
- *
- * @return bool
- */
- function shuffle_assoc(&$array)
- {
- $keys = array_keys($array);
- shuffle($keys);
- $new = [];
- foreach ($keys as $key) {
- $new[$key] = $array[$key];
- }
- $array = $new;
- return true;
- }
|