Skip to content
Snippets Groups Projects
Commit d12150d8 authored by Andreas Gohr's avatar Andreas Gohr
Browse files

fixed problems with spaced arrays

parent 741c5275
No related branches found
No related tags found
No related merge requests found
......@@ -10,7 +10,7 @@ $conf['str3'] = "Hello World";
$conf['str4'] = "Hello 'World'";
$conf['str5'] = "Hello \"World\"";
$conf['arr1'] = array('foo','bar','baz');
$conf['arr1'] = array('foo','bar', 'baz');
$conf['foo']['bar'] = 'x1';
$conf['foo']['baz'] = 'x2';
......@@ -166,12 +166,13 @@ if (!class_exists('configuration')) {
// handle arrays
if(preg_match('/array ?\((.*)\)/', $value, $match)){
if(preg_match('/^array ?\((.*)\)/', $value, $match)){
$arr = explode(',', $match[1]);
// remove quotes from quoted strings & unescape escaped data
$len = count($arr);
for($j=0; $j<$len; $j++){
$arr[$j] = trim($arr[$j]);
$arr[$j] = preg_replace('/^(\'|")(.*)(?<!\\\\)\1$/s','$2',$arr[$j]);
$arr[$j] = strtr($arr[$j], array('\\\\'=>'\\','\\\''=>'\'','\\"'=>'"'));
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment