Created
May 19, 2020 04:44
-
-
Save rwaddin/ef68ade4e914d0915634199e773f9548 to your computer and use it in GitHub Desktop.
Insert data to file json with php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// File json yang akan dibaca | |
$file = "anggota.json"; | |
// Mendapatkan file json | |
$anggota = file_get_contents($file); | |
// Mendecode anggota.json | |
$data = json_decode($anggota, true); | |
// Data array baru | |
$data [] = array( | |
'no' => 3, | |
'nama' => 'Elika', | |
'alamat' => 'Kediri' | |
); | |
// Mengencode data menjadi json | |
$jsonfile = json_encode($data, JSON_PRETTY_PRINT); | |
// Menyimpan data ke dalam anggota.json | |
$anggota = file_put_contents($file, $jsonfile); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment