-2

いくつかのデータをJSONファイルに保存する必要があります。json_encodeの使用方法は知っていますが、エンコードされたデータを外部ファイルに書き込む方法に関する情報が見つかりません。エンコードされたデータを出力するコードを次に示しますが、データを別のJSONファイルに書き込むにはどうすればよいですか?

<?php
$array1 = array('key1' => "data1",
        'key2' => "data2",
        'key3' => "data3",
        'key4' => "data4",
        'key5' => "data5");

echo json_encode($array1);
?>
4

2 に答える 2

1
file_put_contents('array1.json', json_encode($array1));
于 2013-02-21T19:22:30.413 に答える
0

使用するfwrite(...)

DOC から:

// Let's make sure the file exists and is writable first.
if (is_writable($filename)) {

    // In our example we're opening $filename in append mode.
    // The file pointer is at the bottom of the file hence
    // that's where $somecontent will go when we fwrite() it.
    if (!$handle = fopen($filename, 'a')) {
         echo "Cannot open file ($filename)";
         exit;
    }

    // Write $somecontent to our opened file.
    if (fwrite($handle, $somecontent) === FALSE) {
        echo "Cannot write to file ($filename)";
        exit;
    }

    echo "Success, wrote ($somecontent) to file ($filename)";

    fclose($handle);

} else {
    echo "The file $filename is not writable";
}
?>

または単に使用するfile_put_contents(...)

file_put_contents($filname, $data);
于 2013-02-21T19:22:25.983 に答える