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