0

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

1
  • It would be better for us to help you if you could copy the error message and the print_r data here instead of in a picture. Commented Dec 29, 2016 at 16:58

1 Answer 1

1

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

echo $data["startTask"];
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.