$array = array(
"foo" => "bar",
"bar" => "foo",
);
$array = array(
"foo" => "bar",
"bar" => "foo",
);
$file_name = 'path/to/file/file_name';
file_put_contents($file_name, json_encode($array)); //сохраняем в файл
$array = json_decode(file_get_contents($file_name), true); // читаем из файла