@@ -40,11 +40,11 @@ |
||
| 40 | 40 | $exstr = ''; |
| 41 | 41 | foreach ($array as $key => $value) { |
| 42 | 42 | $line = ''; |
| 43 | - $current=$arrname."['".addslashes($key)."']"; |
|
| 43 | + $current = $arrname."['".addslashes($key)."']"; |
|
| 44 | 44 | if (is_array($value)) { |
| 45 | 45 | $line .= self::parserArraySub($current, $value); |
| 46 | 46 | } else { |
| 47 | - $line = $current; |
|
| 47 | + $line = $current; |
|
| 48 | 48 | if (is_string($value)) { |
| 49 | 49 | $line .= "='".addslashes($value).'\';'.PHP_EOL; |
| 50 | 50 | } elseif (is_bool($value)) { |