i have json data like this decode from API, i get with PHP
{
  "0": {
    "id_siswa": "14477",
    "rombel": "15",
    "nama_lengkap": "Cahyo"
  },
  "1": {
    "id_siswa": "14484",
    "rombel": "15",
    "nama_lengkap": "Bowo"
  },
  "2": {
    "id_siswa": "14485",
    "rombel": "13",
    "nama_lengkap": "Agus Sugiharto"
  }
}
but when i call
$data[0]->id_siswa 
Uncaught Error: Cannot use object of type stdClass as array
then i try to call like
$data->id_siswa 
error : Undefined property: stdClass::$id_siswa in
 
     
     
    