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