Conditions | 4 |
Paths | 4 |
Total Lines | 19 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
46 | function get_array_data($key = '', $data, $default = null) |
||
47 | { |
||
48 | if (empty($key)) { |
||
49 | return $data; |
||
50 | } |
||
51 | |||
52 | $indexes = explode('.', $key); |
||
53 | |||
54 | $value = $data; |
||
55 | |||
56 | foreach ($indexes as $index) { |
||
57 | if (!isset($value[$index])) { |
||
58 | return $default; |
||
59 | } |
||
60 | |||
61 | $value = $value[$index]; |
||
62 | } |
||
63 | |||
64 | return $value; |
||
65 | } |
||
66 |