-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathfunctions.php
More file actions
255 lines (221 loc) · 7.77 KB
/
functions.php
File metadata and controls
255 lines (221 loc) · 7.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
<?php
// Exit if accessed directly
if ( ! defined( 'ABSPATH' ) ) exit;
/**
* This file is part of the array_column library
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @copyright Copyright (c) Ben Ramsey (http://benramsey.com)
* @license http://opensource.org/licenses/MIT MIT
*/
if ( ! function_exists( 'array_column' ) ) {
/**
* Returns the values from a single column of the input array, identified by
* the $columnKey.
*
* Optionally, you may provide an $indexKey to index the values in the returned
* array by the values from the $indexKey column in the input array.
*
* @param array $input A multi-dimensional array (record set) from which to pull
* a column of values.
* @param mixed $columnKey The column of values to return. This value may be the
* integer key of the column you wish to retrieve, or it
* may be the string key name for an associative array.
* @param mixed $indexKey (Optional.) The column to use as the index/keys for
* the returned array. This value may be the integer key
* of the column, or it may be the string key name.
*
* @return array
*/
function array_column( $input = null, $columnKey = null, $indexKey = null ) {
// Using func_get_args() in order to check for proper number of
// parameters and trigger errors exactly as the built-in array_column()
// does in PHP 5.5.
$argc = func_num_args();
$params = func_get_args();
if ( $argc < 2 ) {
trigger_error( "array_column() expects at least 2 parameters, {$argc} given", E_USER_WARNING );
return null;
}
if ( ! is_array( $params[0] ) ) {
trigger_error(
'array_column() expects parameter 1 to be array, ' . gettype( $params[0] ) . ' given',
E_USER_WARNING
);
return null;
}
if ( ! is_int( $params[1] )
&& ! is_float( $params[1] )
&& ! is_string( $params[1] )
&& $params[1] !== null
&& ! ( is_object( $params[1] ) && method_exists( $params[1], '__toString' ) )
) {
trigger_error( 'array_column(): The column key should be either a string or an integer', E_USER_WARNING );
return false;
}
if ( isset( $params[2] )
&& ! is_int( $params[2] )
&& ! is_float( $params[2] )
&& ! is_string( $params[2] )
&& ! ( is_object( $params[2] ) && method_exists( $params[2], '__toString' ) )
) {
trigger_error( 'array_column(): The index key should be either a string or an integer', E_USER_WARNING );
return false;
}
$paramsInput = $params[0];
$paramsColumnKey = ( $params[1] !== null ) ? (string) $params[1] : null;
$paramsIndexKey = null;
if ( isset( $params[2] ) ) {
if ( is_float( $params[2] ) || is_int( $params[2] ) ) {
$paramsIndexKey = (int) $params[2];
} else {
$paramsIndexKey = (string) $params[2];
}
}
$resultArray = array();
foreach ( $paramsInput as $row ) {
$key = $value = null;
$keySet = $valueSet = false;
if ( $paramsIndexKey !== null && array_key_exists( $paramsIndexKey, $row ) ) {
$keySet = true;
$key = (string) $row[ $paramsIndexKey ];
}
if ( $paramsColumnKey === null ) {
$valueSet = true;
$value = $row;
} elseif ( is_array( $row ) && array_key_exists( $paramsColumnKey, $row ) ) {
$valueSet = true;
$value = $row[ $paramsColumnKey ];
}
if ( $valueSet ) {
if ( $keySet ) {
$resultArray[ $key ] = $value;
} else {
$resultArray[] = $value;
}
}
}
return $resultArray;
}
}
/**
* @see https://gist.github.com/tripflex/2818993b85db39a1f89a
*/
if ( ! function_exists( 'array_column_recursive' ) ) {
/**
* Returns the values recursively from columns of the input array, identified by
* the $columnKey.
*
* Optionally, you may provide an $indexKey to index the values in the returned
* array by the values from the $indexKey column in the input array.
*
* @param array $input A multi-dimensional array (record set) from which to pull
* a column of values.
* @param mixed $columnKey The column of values to return. This value may be the
* integer key of the column you wish to retrieve, or it
* may be the string key name for an associative array.
* @param mixed $indexKey (Optional.) The column to use as the index/keys for
* the returned array. This value may be the integer key
* of the column, or it may be the string key name.
*
* @return array
*/
function array_column_recursive( $input = null, $columnKey = null, $indexKey = null ) {
// Using func_get_args() in order to check for proper number of
// parameters and trigger errors exactly as the built-in array_column()
// does in PHP 5.5.
$argc = func_num_args();
$params = func_get_args();
if ( $argc < 2 ) {
trigger_error( "array_column_recursive() expects at least 2 parameters, {$argc} given", E_USER_WARNING );
return null;
}
if ( ! is_array( $params[0] ) ) {
// Because we call back to this function, check if call was made by self to
// prevent debug/error output for recursiveness :)
$callers = debug_backtrace();
if ( $callers[1]['function'] != 'array_column_recursive' ) {
trigger_error( 'array_column_recursive() expects parameter 1 to be array, ' . gettype( $params[0] ) . ' given', E_USER_WARNING );
}
return null;
}
if ( ! is_int( $params[1] )
&& ! is_float( $params[1] )
&& ! is_string( $params[1] )
&& $params[1] !== null
&& ! ( is_object( $params[1] ) && method_exists( $params[1], '__toString' ) )
) {
trigger_error( 'array_column_recursive(): The column key should be either a string or an integer', E_USER_WARNING );
return false;
}
if ( isset( $params[2] )
&& ! is_int( $params[2] )
&& ! is_float( $params[2] )
&& ! is_string( $params[2] )
&& ! ( is_object( $params[2] ) && method_exists( $params[2], '__toString' ) )
) {
trigger_error( 'array_column_recursive(): The index key should be either a string or an integer', E_USER_WARNING );
return false;
}
$paramsInput = $params[0];
$paramsColumnKey = ( $params[1] !== null ) ? (string) $params[1] : null;
$paramsIndexKey = null;
if ( isset( $params[2] ) ) {
if ( is_float( $params[2] ) || is_int( $params[2] ) ) {
$paramsIndexKey = (int) $params[2];
} else {
$paramsIndexKey = (string) $params[2];
}
}
$resultArray = array();
foreach ( $paramsInput as $row ) {
$key = $value = null;
$keySet = $valueSet = false;
if ( $paramsIndexKey !== null && is_array( $row ) && array_key_exists( $paramsIndexKey, $row ) ) {
$keySet = true;
$key = (string) $row[ $paramsIndexKey ];
}
if ( $paramsColumnKey === null ) {
$valueSet = true;
$value = $row;
} elseif ( is_array( $row ) && array_key_exists( $paramsColumnKey, $row ) ) {
$valueSet = true;
$value = $row[ $paramsColumnKey ];
}
$possibleValue = array_column_recursive( $row, $paramsColumnKey, $paramsIndexKey );
if ( $possibleValue ) {
$resultArray = array_merge( $possibleValue, $resultArray );
}
if ( $valueSet ) {
if ( $keySet ) {
$resultArray[ $key ] = $value;
} else {
$resultArray[] = $value;
}
}
}
return $resultArray;
}
}
if( ! function_exists( 'array_unique_assoc' ) ){
/**
* Return only unique array values based on key in the array
*
*
* @param array $array
* @param string $key
*
* @return array
*
*/
function array_unique_assoc( $array, $key ) {
$unique = array();
foreach ( $array as $value ) {
$unique[ $value[ $key ] ] = $value;
}
$data = array_values( $unique );
return $data;
}
}