我有这样的代码,初始化配置
$this->config = array(
'users' => array(
array('name' => 'admin',
'password' => $password
)
),
'tokens' => array(),
'sessions' => array(),
);
我正在使用它保存到一个文件中json_encode($this->config)
,然后我使用它加载它
json_decode(file_get_contents('file.json'));
它创建嵌套对象,我想在初始化和配置时拥有这个嵌套对象,除此之外有没有办法创建这个嵌套对象?
$this->config = json_decode(json_encode($this->config));