json code -
"days": [
{
"day-code": "SUN",
"runs": "Y"
},
{
"day-code": "MON",
"runs": "Y"
},
{
"day-code": "TUE",
"runs": "Y"
},
{
"day-code": "WED",
"runs": "Y"
},
{
"day-code": "THU",
"runs": "Y"
},
{
"day-code": "FRI",
"runs": "Y"
},
{
"day-code": "SAT",
"runs": "Y"
}
]
for retrieving the "day-code" from PHP
by using the following code -
days[0]['day-code'];
OR
days[0][0];
php error -
Fatal error: Uncaught Error: Cannot use object of type stdClass as array
Can anyone help me from this problem.