Merhabalar,
PHP'de JSON verisinin ikinci (e.g) bloğunu nasıl çekebilirim ?
{
"username" => "asdfas",
"password" => "asdfasfd",
}
echo $json->password; yerine $json->2 gibi
Json |
3 Mesajlar | 614 Okunma |
$json = '{"username" : "asdfas","password" : "asdfasfd"}';
$array = json_decode( $json, true );
echo $array["password"];
$json = '{"username" : "asdfas","password" : "asdfasfd"}';
$arr = json_decode($json, true);
$key = array_values($arr);
echo $key[1];
?>