config : trim the arrays contents to be correctely detected
git-svn-id: https://svn.fournier38.fr/svn/ProgSVN/trunk@2149 bf3deb0d-5f1a-0410-827f-c0cc1f45334c
This commit is contained in:
@@ -185,11 +185,14 @@ class config
|
|||||||
$new = array ();
|
$new = array ();
|
||||||
foreach ($values as $key=>$val)
|
foreach ($values as $key=>$val)
|
||||||
{
|
{
|
||||||
|
$val = trim ($val);
|
||||||
if (strpos ($val, "=>") !== false)
|
if (strpos ($val, "=>") !== false)
|
||||||
{
|
{
|
||||||
// Associated array
|
// Associated array
|
||||||
unset ($values[$key]);
|
unset ($values[$key]);
|
||||||
list ($key1, $val1) = explode ("=>", $val);
|
list ($key1, $val1) = explode ("=>", $val);
|
||||||
|
$key1 = trim ($key1);
|
||||||
|
$val1 = trim ($val1);
|
||||||
if ($val1[0] === "\"" || $val1[0] === "'")
|
if ($val1[0] === "\"" || $val1[0] === "'")
|
||||||
$val1 = substr($val1, 1, -1);
|
$val1 = substr($val1, 1, -1);
|
||||||
elseif (strpos ($val1, "."))
|
elseif (strpos ($val1, "."))
|
||||||
|
|||||||
Reference in New Issue
Block a user