ᅠᅠ
Size: a a a
ᅠᅠ
MB
MB
MB
VR
MB
MB
ᅠᅠ
MB
ᅠᅠ
ᅠᅠ
ᅠᅠ
a
MB
$data = (object) array();
$data->users = array();
array_push($data->users, array('login' => 'Login goes here', 'password' => 'Password goes here', 'user' => 'User goes here'));
array_push($data->users, array('login' => 'Login goes here', 'password' => 'Password goes here', 'user' => 'User goes here'));
array_push($data->users, array('login' => 'Login goes here', 'password' => 'Password goes here', 'user' => 'User goes here'));
$json = json_encode($data);
echo $json;
MB
echo $json;запиши в файл
MB
MB
$json = json_decode(file_get_contents('users.json'));
echo $json ? 'JSON valid<br><br>' : 'JSON invalid<br><br>';
foreach($json->users as $user) {
echo $user->login.', '.$user->password.'<br>';
}
MB
MB