ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilArrayUtil.php
Go to the documentation of this file.
1 <?php
2 
33 {
39  public static function quoteArray(array $a_array): array
40  {
41  global $DIC;
42 
43  $ilDB = $DIC->database();
44 
45 
46  if (!is_array($a_array) or !count($a_array)) {
47  return ["''"];
48  }
49 
50  foreach ($a_array as $k => $item) {
51  $a_array[$k] = $ilDB->quote($item);
52  }
53 
54  return $a_array;
55  }
56 
61  public static function stripSlashesRecursive($a_data, bool $a_strip_html = true, string $a_allow = ""): array
62  {
63  if (is_array($a_data)) {
64  foreach ($a_data as $k => $v) {
65  if (is_array($v)) {
66  $a_data[$k] = ilArrayUtil::stripSlashesRecursive($v, $a_strip_html, $a_allow);
67  } else {
68  $a_data[$k] = ilUtil::stripSlashes($v, $a_strip_html, $a_allow);
69  }
70  }
71  } else {
72  $a_data = ilUtil::stripSlashes($a_data, $a_strip_html, $a_allow);
73  }
74 
75  return $a_data;
76  }
77 
81  public static function stripSlashesArray(array $a_arr, bool $a_strip_html = true, string $a_allow = ""): array
82  {
83  foreach ($a_arr as $k => $v) {
84  $a_arr[$k] = ilUtil::stripSlashes($v, $a_strip_html, $a_allow);
85  }
86 
87  return $a_arr;
88  }
89 
93  public static function sortArray(
94  array $array,
95  string $a_array_sortby_key,
96  string $a_array_sortorder = "asc",
97  bool $a_numeric = false,
98  bool $a_keep_keys = false
99  ): array {
100  if (!$a_keep_keys) {
101  return self::stableSortArray($array, $a_array_sortby_key, $a_array_sortorder, $a_numeric);
102  }
103 
104  global $array_sortby, $array_sortorder;
105  $array_sortby = $a_array_sortby_key;
106 
107  if ($a_array_sortorder == "desc") {
108  $array_sortorder = "desc";
109  } else {
110  $array_sortorder = "asc";
111  }
112  if ($a_numeric) {
113  if ($a_keep_keys) {
114  uasort($array, [ilArrayUtil::class, "sort_func_numeric"]);
115  } else {
116  usort($array, [ilArrayUtil::class, "sort_func_numeric"]);
117  }
118  } else {
119  if ($a_keep_keys) {
120  uasort($array, [ilArrayUtil::class, "sort_func"]);
121  } else {
122  usort($array, [ilArrayUtil::class, "sort_func"]);
123  }
124  }
125 
126  return $array;
127  }
128 
132  private static function sort_func(array $left, array $right): int
133  {
134  global $array_sortby, $array_sortorder;
135 
136  if (!isset($array_sortby)) {
137  // occurred in: setup -> new client -> install languages -> sorting of languages
138  $array_sortby = 0;
139  }
140 
141  $leftValue = (string) ($left[$array_sortby] ?? '');
142  $rightValue = (string) ($right[$array_sortby] ?? '');
143 
144  // this comparison should give optimal results if
145  // locale is provided and mb string functions are supported
146  if ($array_sortorder === "asc") {
147  return ilStr::strCmp($leftValue, $rightValue);
148  } elseif ($array_sortorder === "desc") {
149  return ilStr::strCmp($rightValue, $leftValue);
150  }
151 
152  return 0;
153  }
154 
158  private static function sort_func_numeric(array $left, array $right): int
159  {
160  global $array_sortby, $array_sortorder;
161 
162  $leftValue = (string) ($left[$array_sortby] ?? '');
163  $rightValue = (string) ($right[$array_sortby] ?? '');
164 
165  if ($array_sortorder === "asc") {
166  return $leftValue <=> $rightValue;
167  } elseif ($array_sortorder === "desc") {
168  return $rightValue <=> $leftValue;
169  }
170 
171  return 0;
172  }
173 
179  private static function mergesort(array &$array, ?callable $cmp_function = null): void
180  {
181  if ($cmp_function === null) {
182  $cmp_function = 'strcmp';
183  }
184  // Arrays of size < 2 require no action.
185  if (count($array) < 2) {
186  return;
187  }
188 
189  // Split the array in half
190  $halfway = intval(count($array) / 2);
191  $array1 = array_slice($array, 0, $halfway);
192  $array2 = array_slice($array, $halfway);
193 
194  // Recurse to sort the two halves
195  ilArrayUtil::mergesort($array1, $cmp_function);
196  ilArrayUtil::mergesort($array2, $cmp_function);
197 
198  // If all of $array1 is <= all of $array2, just append them.
199  if (call_user_func($cmp_function, end($array1), $array2[0]) < 1) {
200  $array = array_merge($array1, $array2);
201  return;
202  }
203 
204  // Merge the two sorted arrays into a single sorted array
205  $array = [];
206  $ptr1 = $ptr2 = 0;
207  while ($ptr1 < count($array1) && $ptr2 < count($array2)) {
208  if (call_user_func($cmp_function, $array1[$ptr1], $array2[$ptr2]) < 1) {
209  $array[] = $array1[$ptr1++];
210  } else {
211  $array[] = $array2[$ptr2++];
212  }
213  }
214 
215  // Merge the remainder
216  while ($ptr1 < count($array1)) {
217  $array[] = $array1[$ptr1++];
218  }
219  while ($ptr2 < count($array2)) {
220  $array[] = $array2[$ptr2++];
221  }
222  }
223 
231  public static function stableSortArray(
232  array $array,
233  string $a_array_sortby,
234  string $a_array_sortorder = "asc",
235  bool $a_numeric = false
236  ): array {
237  global $array_sortby, $array_sortorder;
238 
239  $array_sortby = $a_array_sortby;
240 
241  if ($a_array_sortorder == "desc") {
242  $array_sortorder = "desc";
243  } else {
244  $array_sortorder = "asc";
245  }
246 
247  // Create a copy of the array values for sorting
248  $sort_array = array_values($array);
249 
250  if ($a_numeric) {
251  ilArrayUtil::mergesort($sort_array, [ilArrayUtil::class, "sort_func_numeric"]);
252  } else {
253  ilArrayUtil::mergesort($sort_array, [ilArrayUtil::class, "sort_func"]);
254  }
255 
256  return $sort_array;
257  }
258 }
static sort_func(array $left, array $right)
static stripSlashesRecursive($a_data, bool $a_strip_html=true, string $a_allow="")
static quoteArray(array $a_array)
Quotes all members of an array for usage in DB query statement.
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
static sort_func_numeric(array $left, array $right)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
global $DIC
Definition: shib_login.php:22
static stableSortArray(array $array, string $a_array_sortby, string $a_array_sortorder="asc", bool $a_numeric=false)
Sort an aray using a stable sort algorithm, which preveserves the sequence of array elements which ha...
static mergesort(array &$array, ?callable $cmp_function=null)
static strCmp(string $a, string $b)
Definition: class.ilStr.php:90
static stripSlashesArray(array $a_arr, bool $a_strip_html=true, string $a_allow="")
static sortArray(array $array, string $a_array_sortby_key, string $a_array_sortorder="asc", bool $a_numeric=false, bool $a_keep_keys=false)