我遇到了问题.
我创建一个函数来更新我的config.json文件.
问题是,我的config.json是一个多维数组.要获取键的值,我使用此函数:
public function read($key)
{
$read = explode('.', $key);
$config = $this->config;
foreach ($read as $key) {
if (array_key_exists($key, $config)) {
$config = $config[$key];
}
}
return $config;
}
我还做了一个更新密钥的功能.但问题是如果我进行更新(‘database.host’,’new value’);它不会只更新该键,但它会覆盖整个数组.
这是我的更新功能
public function update($key, $value)
{
$read = explode('.', $key);
$config = $this->config;
foreach ($read as $key) {
if (array_key_exists($key, $config)) {
if ($key === end($read)) {
$config[$key] = $value;
}
$config = $config[$key];
}
}
print_r( $config );
}
我的config.json看起来像这样:
{
"database": {
"host": "want to update with new value",
"user": "root",
"pass": "1234",
"name": "dev"
},
some more content...
}
我有一个工作功能,但那不是很好.我知道索引的最大值只能是3,所以我计算爆炸的$key并更新值:
public function update($key, $value)
{
$read = explode('.', $key);
$count = count($read);
if ($count === 1) {
$this->config[$read[0]] = $value;
} elseif ($count === 2) {
$this->config[$read[0]][$read[1]] = $value;
} elseif ($count === 3) {
$this->config[$read[0]][$read[1]][$read[3]] = $value;
}
print_r($this->config);
}
只是要知道:变量$this-> config是我的config.json解析为php数组,所以没有错误:)