How does php curl take the second "third" and "fourth"?

I"d like to check the data structure
how can I get the data after the second round?

complete structure:
clipboard.png

I can get the "chinese-name" of "restaurants-involved" this way

foreach ($order_get_one->{"restaurants-involved"} as $key){
echo $key->{"chinese-name"};
}
Mar.07,2021

if it is PHP, the curl request should be a string, parsing the result of the request with json_decode ($ret, true)), and then the array

Menu