GGG205
GGG205

Reputation: 849

Symfony3 - Undefined Index(decode JSON->Object->Array)

I create Project Manager Software online, but I have error: picture with data and error

From JavaScript I send data(you can see on the picture), next I get it and decode JSON in result I have stdClass(I try get data for example $data->{"calendarId"}, but I get error: Undefined property: stdClass). Object is converted to array, but again is error. Fragment code:

if($request->isXmlHttpRequest()) {
        $data=json_decode($request->getContent());
        $data=get_object_vars($data);
        echo var_dump($data);
        echo print_r($data);
        //echo $data->{'startTime'} == ERROR Undefined property stdClass
        echo $data["startTime"];
}

I watched many soulation but problem still keep

Upvotes: 0

Views: 87

Answers (1)

goto
goto

Reputation: 8164

The error seems very clear: You should use startTask not startTime

echo $data["startTask"];

Upvotes: 1

Related Questions