diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/text.php | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/include/text.php b/include/text.php index d99e8fd60..29daa74e8 100644 --- a/include/text.php +++ b/include/text.php @@ -3217,6 +3217,28 @@ function array2XML($obj, $array) { } } +function array_path_exists($str,$arr) { + + $ptr = $arr; + $search = explode('/', $str); + + if($search) { + foreach($search as $s) { + if(array_key_exists($s,$ptr)) { + $ptr = $ptr[$s]; + } + else { + return false; + } + } + return true; + } + + return false; + +} + + /** * @brief Inserts an array into $table. * @@ -3480,3 +3502,4 @@ function print_val($v) { return $v; } + |