如何从对象创建数组?

How to create array from object?

我不知道如何称呼这个类似数组的对象。但是当我尝试访问 Php 中的元素时,我不能。

    {
    "message":"authenticated", 
      "data": {"id":713,"name":"Jamal","email":"abdurasulovsokhib@gmail.com","role":"user"}
    }

我想访问这样的元素。 $array['message']=> 期待结果被“认证”。请帮忙

$JSON = file_get_contents('UserData.json'); // Parsing JSON from file. You can use your own way.
$Array = json_decode($JSON, true); // JSON (string) to Array
echo $Array["message"]; // Output: authenticated
echo $Array["data"]["id"]; // Output: 713