I have this JSON ["{\"clube\":[\"Flamengo\"]}"]
, and when I run this code:
$clubes = '["{\"clube\":[\"Flamengo\"]}"]';
$clubes = json_decode($clubes, true);
array_push($clubes->clube, 'Santos');
return $clubes;
I have this error as a return
Attempt to modify property of non-object
I wanted to leave JSON like this ["{\"clube\":[\"Flamengo\", "Santos"]}"]