[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
DATA_RECOVERY
/
ALL BACKUP
/
SISMADAK SERVER
/
22-04-2019
/
xampp
/
phpMyAdmin
/
libraries
/
[
Home
]
File: util.lib.php
<?php /* vim: set expandtab sw=4 ts=4 sts=4: */ /** * Util file creation * * @package PhpMyAdmin */ namespace PMA\Util; if (! defined('PHPMYADMIN')) { exit; } /** * Access to a multidimensional array by dot notation * * @param array $array List of values * @param string|array $path Path to searched value * @param mixed $default Default value * * @return mixed Searched value */ function get($array, $path, $default = null) { if (is_string($path)) { $path = explode('.', $path); } $p = array_shift($path); while (isset($p)) { if (!isset($array[$p])) { return $default; } $array = $array[$p]; $p = array_shift($path); } return $array; }